I have loaded a menu in _level20 (menu.swf) and I am trying to target the buttons on this menu. Can you please explain why the following is not working (it seems like I'm not targeting the button correctly)
Yet, When I move the menu on the main timeline (for testing since this cannot be done in the real thing) all works fine:
THANKS !!
Code:
_level20.myButton1.onRelease = function() {
_level10.gotoAndPlay(12);
}
Yet, When I move the menu on the main timeline (for testing since this cannot be done in the real thing) all works fine:
Code:
this.myButton1.onRelease = function() {
_level10.gotoAndPlay(12);
}
THANKS !!