MX actionscript quez
MX actionscript quez
Out of context: Reply #12
- Started
- Last post
- 15 Responses
- autonoma0
You need to create a custom function. You can place it on the main timeline, but you'll have to make it global. Something like this:
_global.action = function (a,b) {
c=a+b;
c.gotoAndPlay(2);
}To call it, just type this into your button's actions:
action (bird,2);