Actionscript Q
Actionscript Q
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- ganon0
you would need to give the buttons and/or menus instance names (myBttn01, myBttn02, myBttn03)...put the actions in a frame in the _root time line...you can then talk to the other bttns/timelines of those bttns...if menu 1 was open and you clicked on bttn02...:
this.myBttn02.onRelease = function() {
this.myBttn01 //close action
this.myMenu02 //open action
}