all groups > flash actionscript > june 2005 >
You're in the

flash actionscript

group:

buttons with multiple actions?


Re: buttons with multiple actions? ...helmut
6/8/2005 4:13:18 PM
flash actionscript: create 2 functions

function A() {
//do this
};

function B() {
//do this too
};

myButton.onRelease = function() {
A();
B();
};

--
....helmut
helmutgranda.com



[quoted text, click to view]

buttons with multiple actions? twosteplive
6/8/2005 9:06:18 PM
I cant for the life of me figure out how to assign a button with the capability
to both jump to a point on the timeline, and execute an action script - both
with the same click. I tried using two-different, overlapping buttons, but it
seems as thouh the one on the higher layer prevents the lower-level button from
working.

any idea how to create multiple, simultaneous actions for a single button?
AddThis Social Bookmark Button