ActionScript 1/2 :: Buttons Don't Work After Adding OnPress?

Nov 12, 2009

I have an MC that has a graphic. I have faked buttons for just the over state, so it shows a border around a portion of the graphic. That works fine until I added this to the MC:
 
this.onPress = function(){    if (this._currentframe != 1) {
rewind = true;
}}
 
The onPress function does what it should do, but the buttons no longer show their over state when I hover over them.

View 7 Replies


Similar Posts:


ActionScript 3.0 :: Adding Stop() At Frame 1 Make Buttons Not Work?

Jan 19, 2011

I just started using flash and Im hoping someone with more experience can help me out.  When I add the stop code to frame one to stop the timeline on my homepage, the buttons Ive set up in my navigation bar do not work.  But, if I do not have the stop code in the timeline, the buttons will work correctly.  Without the stop code, though, obviously the whole timeline plays through and doesn't stop on the homepage, which is not desirable.  So how do I stop the timeline on the homepage and still have my buttons work?

View 5 Replies

ActionScript 2.0 :: Adding An OnPress Function?

Feb 16, 2009

I'm trying to add an onPress function to something that I've just dynamically attached to the stage.

ActionScript Code:
item.attachMovie("close_btn", close_btn, this.getNextHighestDepth());

View 9 Replies

ActionScript 2.0 :: Adding An OnPress Handler To Movieclip Part Of Class

Apr 16, 2007

I'm having a problem with my following situation: I made a class "Scrollbar" which I can use to create a scrollbar for a certain movieclip.This movieclip extended class (Scrollbar) has 3 movieclips (see code below):1 - which has the complete scrollbar1.1 - which has the background for the scrollbar.1.2 - which has the slider for the scrollbarNow, I'm trying to make an onPress handler inside my class, I tried to override the onPress() handler of the MovieClip class but it doesn't work.[code]

View 3 Replies

Adding OnPress To Mc, It Kill's The AS On The RollOver And RollOut Functions Of The Button Within?

Jul 13, 2003

I have an mc with a button nested inside and on this button I have AS for the rollOver and rollOut to play certain frames of the mc. The problem is when I use this mc (called 'mybutton_mc') in a menu system and I want to add AS to it to navigate to different areas, ie adding onPress to this mc, it kill's the AS on the rollOver and rollOut functions of the button within.

View 1 Replies

ActionScript 2.0 :: OnPress Inside OnLoadInit Do Not Work

Mar 31, 2011

I try to use onPress function inside an onLoadInit function but nothing will be traced. I can see my hand cursor over my icons though. I also tried with onLoadComplete, but no change...

[Code]...

View 0 Replies

ActionScript 2.0 :: OnPress Function Doesn't Work

Sep 10, 2007

my problem is that my onPress function doesn't want to work. Here�s the script: PHP Code:

[Code]...

the hilite function should let the buttons disable or not, but it just will not work.....

View 1 Replies

ActionScript 2.0 :: The Movieclips Appear, But The OnRollOver,onRollOut And OnPress Do Not Work?

Nov 22, 2010

I've created three movieclips to select the next level, and these work fine the first time my game runs, but when I come back to them, after the first game is over and we're restarting, the movieclips appear, but the onRollOver,onRollOut and onPress do not work...

[code]...

View 2 Replies

ActionScript 2.0 :: OnPress - Four Buttons Inside For Loop

Jun 22, 2010

I'm trying to write onPress for 4 buttons inside a for loop.
This lines traces undefined:
Code:
trace(_root.TeachMethodArr1[count]) // undefined.
This is because count is no more starting from 0 when I click the buttons.

Code:
var TeachMethodArr1:Array=new Array()
var TeachMethodArr2:Array=new Array()
TeachMethodArr1 = ["a","b","c","b","e"]
TeachMethodArr2 = ["a","b","c","b","e"]
for(var count:Number=0;
[Code] .....

View 1 Replies

ActionScript 2.0 :: 4 Buttons Move Down OnPress Using The For Loop?

Mar 14, 2007

I using a for loop for a redundant action that I want to happen across 5 buttons. OnRollOver the button rotates. OnPress the button moves to a new position. It looks like this:

Code:
for(i=0;i<5;i++){
_root.swatch_mc['swatch'+i].onRollOver = function () {
this.onEnterFrame = function () {[code]....

My problem is this; onPress I want the button to move up (Ive achieved this already). I also want the other buttons to move down onPress (this is my problem). Is there a way have the other 4 buttons move down onPress using the for loop? Or is there another method of doing this?

View 2 Replies

ActionScript 2.0 :: XML OnPress - Call Full Image And Try To Upload Doesn't Work

Sep 10, 2008

i have a little trouble with my xml menu, i have this code, but went i call my full image and try to upload doesn't work. I try to put my full image in and Movie Clip with the name of contenedor. But appear a message saying "Error opening URL All work perfect less the onPress.

[Code]....

View 1 Replies

ActionScript 2.0 :: Get A Button To Work When Its Nested In A MC That Has An OnEnterFrame With A OnPress Command Targeted To It?

Apr 13, 2004

How can I get a button to work when its nested in a MC that has an onEnterFrame with a onPress command targeted to it?

Here's the code for my "popup" MC located on the main timeline.

popup.onEnterFrame = function(){
this.onPress = function() {
this.startDrag(false);

[code]....

Within that same MC is a button that tells it to close. However, I run a trace command to it and nothing happens. It seems like the onPress nested in the onEnterFrame is over-riding my button on(press).

View 3 Replies

ActionScript 2.0 :: Buttons In Array - OnPress Correct Sequence

Feb 10, 2011

I have pressed the buttons in a array. The objective is press the buttons in the correct sequence.
Correct sequence click "btn1 and btn2" or " btn2 or btn1"
Correct sequence click "btn3 and btn4" or " btn4 or btn3"
Inc correct sequence click "btn1 and btn4" or " btn4 or btn1"
and so on.

I've place a trace the button is returned undefined.
ActionScript Code:
var buttonArray = new Array(btn1, btn2, btn3, btn4);
var clicks = 0;
for(i =0; i < buttonArray.length; i++){
buttonArray[i] .onPress = function(){
trace(buttonArray[i] + "click");
}}

View 9 Replies

ActionScript 2.0 :: Adding "onPress" To A Field During Runtime

Nov 12, 2009

I am trying to create a little chess similar game as part of my studies. Well I am actually new on AS, but I experimented a little bit and already found out some things...

The Facts: I already created a little Chess-similar-Board with 9x9 fields. I created an Array with the coordinates of each field and another one with the fieldnames. when i click on my "hero" a call the function showMoves(), which (how could it be) shows me the possible moves. (i pasted the code for run here)

[Code]...

View 0 Replies

ActionScript 2.0 :: OnPress Doesn't Work If The Mouse Button Is Pressed Again But The Mouse Is Not Moved?

Jul 26, 2006

I have a very simple piece of code but it has one very annoying bug. When I press the button a second time, the code doesn't work. The only way to get the code to work is by moving the mouse a tiny bit, or moving the mouse off the button and back on. make a button that can be clicked many times without moving the mouse?

Code:
randommultiquiz.onPress = randommultiquizOnPress;
function randommultiquizOnPress() {
_root.attachMovie("connect", "newconnect", 200);
newconnect._x = 0;

[code]....

View 9 Replies

ActionScript 2.0 :: Array.onPress - Add A OnPress Event To Dynamically Duplicated MovieClips ID's Stored In Array List

Apr 15, 2011

lets say i have dynamically duplicated movieClips ID's stored in array list. i want to add a onPress event to them. how do i do it?

[Code]...

View 5 Replies

ActionScript 2.0 :: Movie Clip Buttons - Target / Make The Buttons On The Other Frames Work

Aug 7, 2009

I have a movie clip with 15 frames. Each frame has buttons on it (mc's)... I was going to put the actions on the main timeline/stage and navigate within the MC from the main timeline. Is that possible? I can get the buttons on the first frame of the MC to work, but I can't seem to figure out how to target/make the buttons on the other frames work? I was thinking I could identify the path of the MC with the frame labels, but that doesn't seem to work. like: _root.RMChanger.(frame label).buttonOnFrame = function

I have to move a text box in and out over the MC backgrounds on the main stage... which is why I was thinking to do it this way? I've been switching back and forth bwtween AS2.0 and 3.0

View 9 Replies

ActionScript 2.0 :: Get The Mc To Move But The Buttons Remain Inactive And Also The Rollover States On The Buttons Don't Work

Jul 8, 2005

I am having trouble with a job I am doing at the moment which has an mc with buttons within it. I want it so that when I roll over the mc it tweens from a small version to a larger version, and on this mc there are some buttons. At the moment I can get the mc to move but the buttons remain inactive and also the rollover states on the buttons don't work. I have attached a simpler version of what I am trying to do to this post.

View 3 Replies

Flash Buttons - Manu Buttons Does Not Work On Some Computers ?

Dec 4, 2009

I'm having problems with the flash buttons on the flash website i made for a client. or some reason the buttons in the top and bottom menu work on some people's computers but on some they don't. I don't know what to do, i had this code for all the buttons,

on (release) {
getURL("http://legaldepartment.ca/","_self");
}

and they worked on my computer but on others the buttons didn't work at all so i added this code to each button also

on(press) {
_root.getURL("http://legaldepartment.ca/","self");
}

and they still work on my computer and some other people's computers but still some they don't work on some people's computers.

View 2 Replies

ActionScript 1/2 :: 2 Buttons Won't Work That Were Created Exactly Like Many Others That Work

Jun 1, 2011

I am using Flash CS4 with actionscript 2 to create an interacitve portfolio.I have 2 text buttons that work when I test them with "enable simple buttons." When I publish to IE these buttons won't work.  I have created over 50 buttons using the same methods, they all work.

View 8 Replies

ActionScript 2.0 :: Button OnPress Calls Another Button's OnPress?

Nov 5, 2007

[URL]

First, click on the Abaco island shape on the map. You'll see on rollOver there is a glow around the island. Now click on that island and the glow remains for the zoomed-in detailed view. When you return to map and zoom back out, the glow is removed.

Now, compare this with clicking on the island name "Abaco" from the list on the right, instead of clicking directly on the island from the map. It zooms in and shows the details fine, but the glow that should be there is not.

The reason this problem is very perplexing for me, is that the onPress action of the list button in the right column calls the onPress function of the map button. So, theoretically they should do the EXACT same thing when pushed. But clearly they don't.

Here is the code for the button from the list on the right panel:

Code:
listAbaco_mc.onRollOver = function() {
_root.map_mc.abaco_mc.button_btn.onRollOver();
};

[Code]....

There is more code, for example rollOver, rollOut, and Press actions for the other island buttons, but they are all of the exact same format as the Abaco island button and they all have the same problem.

So, to recap, the problem is that the list button in the right panel do not function properly onPress, even though they are calling the onPress function of the island buttons directly, and the island button onPress function works perfectly. Strangely, all but one little thing works. So it's obviously getting to the correct functions and going through the code as planned, yet that one part about the glow is being ignored or otherwise messed up.

View 12 Replies

ActionScript 3.0 :: Adding More Than One Button Doesn't Work

Nov 7, 2010

I've read many of post on how to make a button with as3, and I finally got one button to work, however; if I add another button one of my movie clip symbols disappears and neither of my buttons work! Each button is a button symbol, on it's own layer, with own instance name, each action is on it's own layer referring to the unique instance names with their own function names. My code is below.

button_1.addEventListener(MouseEvent.CLICK, myButtonFunction);
function myButtonFunction(event: MouseEvent) {
var request:URLRequest = new URLRequest("index.html");

[code]....

View 7 Replies

Adding Labels To Buttons?

Nov 30, 2009

How do I add a label to a button? Using a component button, in CS3 it seemed quite straightforward however CS4 has me stumped. I am trying to make up a website with a row of buttons across the top to appear in all the pages. I have a controling page names portfolio.fla and several other pages to link in with this one. I have placed a button in the library from the components tab in the windows tab. Then dragged out 5 buttons and have them all working properly and linking up to the other pages, but when I went to place labels on them found myself having problems. Clearly not a good day for me.

View 5 Replies

ActionScript 2.0 :: Adding A Few More Buttons Placed In Some New MCs?

Jun 26, 2003

Having got my AS to work nicely - I was happy as the everything fitted into to place - so I moved onto adding a few more buttons placed in some new MCs. problem: When I press buttons that having nothing to do with the main script a dynamic border ,that changes size to reveal a new picture when it is loaded after a preload, decides to do a loop. Even the main picture flickers as if it has also been reloaded even though that script is executed by a button with an instance name.

The border MC uses a onClipEvent (enterframe) command to initiate the script - does this mean it reponds everytime any MC has something happen to it? If so, can I somehow write the AS so that the onClipEvent refers to the event of a specific MC so it does not respond to all MC events?

View 14 Replies

ActionScript 2.0 :: Adding SFX To Adv Buttons?

Mar 12, 2004

Ive been making some advanced buttons with some trendy transitions using Lostinbeta's onEnterFrame/ hitTest method below:

Code:
//this script is on my mc (which is the button)
onClipEvent(enterFrame){
if (this.hitTest(_root._xmouse, _root._ymouse, true)){

[code]....

View 2 Replies

ActionScript 3.0 :: Xml Adding Inserting Appending Doesn't Work

Feb 11, 2009

Does anyone have any links about using appendChild() and insertchildbefore() because I can't seem to get this to work.

View 1 Replies

ActionScript 3.0 :: Adding Work Hours For Each Employees With Overview?

Feb 24, 2012

My boss has asked me to find/create a program which can be used for each employee to add his/her hours to a specific project (and possible subprojects) and have a sheet (preferably printable) with an overview. My only "real" scripting knowledge atm is AS3, I do have some small experience with jQuery, and trying to expand that knowledge so I can work with HTML5 [URL]. And I have worked, once in a blue moon , with PHP. Would it be a "weird" decision to just create this myself within Flash/Air? And use xml/txt to store the hours locally?

View 1 Replies

Adding ActionScript For Buttons And Labels?

Apr 6, 2011

My flash files is designed like this:

Layer 1 Pages with labels and actionscript for that specific layer (stop, gotoandplay, and Uiloader source)
Layer 2 is a Movieclip with a navbar
Layer 3 Dropdown menu where buttons are placed inside a movieclip
Layer 4 Actionscript

My problem is finding the correct way to link from a button inside a movieclip to a label inside another movieclip.

View 2 Replies

Adding Url Link To Buttons In ActionScript 3?

Sep 13, 2011

I have three links

Link1, Link 3, and Link 4

The current code I am using is

import flash.net.navigateToURL;
import flash.net.URLRequest;
var link_four:link4;

[code]....

View 1 Replies

ActionScript 1/2 :: Adding Actions To Buttons?

May 17, 2009

I am trying to add actions to my buttons i want the user to be sent to another page when the button is clicked. The action i have attached to the button is

on (release) {getURL(www.pharmeng.ie,_self);
}

Attachments:

pharmeng buttons1.swf (7.7 K)

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved