flash nested button, not responding
flash nested button, not responding
Out of context: Reply #5
- Started
- Last post
- 8 Responses
- unfittoprint0
I think you want your parentMC to trigger the dropdown to appear/dissapear.
The usual way is the following.
make 3 MCs: the menuMC, the subMenuMC[with all the nested buttons] and the triggerMC [with its alpha set to 0] behind the subMenuMC.initial parameters:
subMenu._visible=false;
triggerMC._visible=false;menuMc.onRollOver=function(){
subMenu._visible=true;
}trigger.onRollOver=function(){
this._visible=false;
subMenu._visible=false;
}