Hi so I'm making a main menu and the problem I've run into is regarding a back button. I'm using the same back button to navigate throughout the submenus of the main menu.
I need to know how to determine which submenu of the menu is up at any given time, so that I can change my playhead to the appropriate label instead of going back to the original main menu label all the time.
var subMenu:DisplayObject = this.getChildByName("mc_subMultiplayer");
if (Boolean(this.contains(subMenu))){
this.gotoAndPlay(49);
}
else{
MovieClip(parent).gotoAndPlay("goBack");
}
I've tried variations of this to no avail :c