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
Similar Posts:
Jan 17, 2010
how to do so by clicking on the button movieclip moved to x = 100; and when pressed repeatedly to x =- 150 event onRelease - not work:
[Code]...
View 9 Replies
Feb 25, 2009
I wondering if there is a way to cancel a button's onPress action.For example on my button I have the following:
Code:
on (press) {
startDrag(this, false, 384, 2.5, 384, 70.5);
}
[code]....
However if you press the button and roll out with your mouse button still held down it will continue to drag even after you release the mouse button. It then won't stop dragging until you roll over and then out of the button.
To correct this I was wondering if there is a way to call the on(Press) action and stop it OR to activate the on(release) or on(rollOut) actions OR a way to activate "stopDrag();" when the user rolls out even if they are still holding the mouse button down.
View 3 Replies
Mar 9, 2005
I have an image that I put in my movie. I then changed it via "Convert to Symbol" to a button. Within it I have two images, one that is for the up or no mouseover version and the other for the mouseover or down position. This part works fine. However using the code below I click on the button and nothing happens. The mouseover stuff still works fine just not the getURL. This should be so simple but it is holding me up.
Code:
SkipIntro.onPress = function() {
getURL("[URL]", "_blank", "GET");
};
View 2 Replies
Apr 1, 2005
Code:
goto = function(where:String) {
getURL("[URL]"+where+".htm","_self");
} button1.onRelease = goto("home");
When the movie loads, flash immediately 'getURL' before I press my button1. how come the code execute even before i press it 1st?
View 6 Replies
Jan 8, 2007
I am trying to build a drop down menu using fuse kit. I somewhat understand the fuse kit, or the stuff I need to alpha, slide, tween and the whatnots. I have a menu button, (button_mc) press it once and the sub menu appears. Press it again and the sub menu disappears But how do I write the code. So It will work?
button_mc.onPress1 = function() {
Some code that make the menu appear
} button_mc.onPress2 = function() {
Some code that make the menu disappear
View 3 Replies
Aug 3, 2007
I have the following structure set up from the top down - one inside the other on the stage. All instance names have been assigned properly[code]...
I've been trying various combinations of this from the main timeline to get a response when I fire the link (card1_button1) but nothing works. This is the longest version with everything in the path[code]...
View 6 Replies
Jan 29, 2009
I have created a buttons with setInterval so that it can call the function till the button will be pressed.onRelease of button I 'm clearing the interval.It is working fine. It gives problem when I'm pressing a button and moving the cursor out of that button area and releasing, it does not call the onRelease event and hence the function goes in the infinite loop.
_level0.main.btn_SizePlus.onPress = function()
{
if(plusint != null)
[code]....
View 2 Replies
Mar 29, 2009
we need to make a variable out of i in order to choose the i of that moment during the loop... [URL]
I made an Actionscript together with PHP script which looks for files in a certain folder:
here is the php script:
[Code]....
View 3 Replies
Jan 9, 2010
I'm doing a school project in flash that basically has to be a movie trailer, just several photos compiled together with some music. I got bored and now am making controls in Actionscript. I'm using CS4, however I have the document based in Actionscript 2.0. Basically, I have created a rewind button that goes backwards, however now I want it to do one of the two things:
If the video was playing when the button was pressed, I want it to go back to playing when released. If the video was paused the the button was pressed, I want it to continue to stay paused when released. I've tried some very basic if statements, trying to assign boolean statements, but I'm stuck. Here's what I have thus far for my rewind button:
Code:
rewind_button.onPress = function () {
onEnterFrame = function() {
prevFrame();
}}
rewind_button.onRelease = function () {
delete onEnterFrame;
play();
}}
View 3 Replies
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
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
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
Nov 20, 2006
I have a set of 5 text buttons that I want to alter slightly with actionscript. An OnClip event moves the 5 text buttons onto the screen, then each button has a stop action as well as an OnPress/OnRelease that rotates it from black text to blue text and rolls back to black text again. I just need it to be black text to blue and stop when the viewer clicks the link to go to an HTML page.
How would you code it so that the text button rolls from black to blue and stays BLUE for the selected HTML page as long as the user is on it, letting them know where they are in the site's navigation. The sample code from button 1 is below:
[Code].....
View 2 Replies
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
Jan 16, 2009
Im new to actionscript , but not new to programming..Got the following problem : Im building a flash page dynamically with actionscript , from a php generated xml file which defines image/swf paths, text, position etc..All works well, except, i can't set an onPress function on the movieclips i create. Im doing something like this:
[Code]...
View 0 Replies
Jun 17, 2009
the onPress down the bottom of this code wont trace
Code:
thumb_1_mc.onPress = function(){
loadjpg();
}
[Code].....
View 1 Replies
Jan 27, 2011
I have a Red Cup which is a MC and I want the Red Cup to go UP when clicked on and goes back down when you release the mouse click.
I know the coding is
On(press) { and
On(release) {
But I do not know the details.
View 2 Replies
Jan 13, 2009
I have a movieclip with onPress and I attach another movie to the first one. Unfortunately, the second movie inherits the onPress function from the first one. How can I remove the onPress function from the second movie? I tried to set it's onPress and onRelease to null and undefined but no success.
View 3 Replies
May 11, 2010
I'm trying to use some buttons to navigate through an FLV with cue points. Here is an example of the code I'm using so far, but I'm getting an Invail Seek error in my output.
[AS]
photochromic_but.onPress = function() {
FLV_player.seekToNavCuePoint("Photochromic");
};
[/AS]
View 2 Replies
Sep 18, 2010
If I want a button to perform 2 actions such as 1st time onPress the mc visible true and 2nd time onPress the mc visible false and true and false and so on.
View 2 Replies
Feb 8, 2006
I have the next code:
mc.onPress=function()
{
//some code
}
How do I remove the event handler onPress?
View 4 Replies
Aug 30, 2010
I have a button that I basically want to give the action:
on (press) {
gotoAndPlay (3) ;
}
[code]....
View 5 Replies
Apr 4, 2012
I'm trying to do something like this:
var something = "someValue";
some_btn.onPress = function (something) {
someFunction(something);
}
[Code].....
But it traces "undefined". What would be the correct way of achieving this?
View 3 Replies
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
Feb 16, 2009
I was wondering for personal use how you would go about writing a function on a button that when the mouse click is down it would keep firing the function kinda like it does when using the onEnterFrame on key frame..
View 2 Replies
Apr 5, 2010
I have a pair of triangular movieclips that are up against each other real snug and are practically touching. As a result their bounding boxes overlap so using onPress for them causes the one on the higher depth to be clicked. How do I use onPress to mathematically determine if the cursor is within some boundaries I set?
View 1 Replies
Jan 23, 2011
I have created a simple grid on my canvas.First I defined an empty movieclip (wrapper) for my grid, then I draw lines onto it to make the grid.Now, I want to click on the grid and get the x/y of where I clicked so I can determine where in the grid i am. But my trace in the onPress event does not show.I'm under the impression that my mcGrid has a 0x0 width and height. When I trace the mcGrid._width in the bottom it outputs "0" so maybe that's why it is not working? Here is my code:
ActionScript Code:
_root.createEmptyMovieClip("mcGrid", 1);
for (var i=0; i<12; i++) {
var clipName = "mcHorizontal_"+i;
[code]....
View 0 Replies
Sep 17, 2009
Im trying to drag a movieClip onPress.. works ok until i load an image into the movieClip..
Code: Select allimgBig.onPress = function() {
this.startDrag();
}
imgBig.onRelease = function() {
[Code].....
View 1 Replies
Feb 12, 2006
I just have a code attaching mc for create a thumbnail.I can't assign a onPress action..because when I test it ..it's seem not working.at least tell me what's wrong with this code..for load image thumnail part is okay only for assigning onpress action.[code]
View 2 Replies