# Noob Menu Navigation Questions

**URL:** https://forum.kirupa.com/t/noob-menu-navigation-questions/194501
**Category:** flash
**Created:** [July 24, 2006, 6:06am UTC](https://forum.kirupa.com/t/noob-menu-navigation-questions/194501 "2006-07-24T06:06:44Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![cool99s](https://avatars.discourse-cdn.com/v4/letter/c/858c86/32.png) [@cool99s](https://forum.kirupa.com/u/cool99s)
#### Post date: [July 24, 2006, 6:06am UTC](https://forum.kirupa.com/t/noob-menu-navigation-questions/194501/1 "2006-07-24T06:06:44Z")

</div>

Hello everyone,  
I’m currently working on Flash buttons for HTML website.  
My intention of this button is that when you rollOver on any button, the size increases and another sub menu appears inside the bigger sized square box. The problem that i faced was that after the rollOver state, I can’t click/rollOver/rollOut on the sub menu buttons. Someone said that because there are movie clips inside another movie clip, that it can only recognize 1 mc.

my action script on the 1st frame of the action layer (\_root) was:

var posY = [0,64.5,129,193.5,258, 322.5, 387, 451.5];  
function OVER\_FN(No){  
for(var i = 0; i\<8; i++){  
if (No==i){  
this[“my\_mc”+i].onEnterFrame=function(){  
var myName = Number(this.\_name.slice(5));  
this.\_y += (posY[myName]-this.\_y)_.14;  
this.nextFrame();  
};  
}else{  
this[“my\_mc”+i].onEnterFrame=function(){  
var myName = Number(this.\_name.slice(5));  
if (No\<myName) {  
this.\_y += ((posY[myName]+62.5)-this.\_y)_.14;  
} else {  
this.\_y += (posY[myName]-this.\_y)\*.14;  
}  
this.prevFrame();  
};  
}  
}  
}  
//rollover  
my\_mc0.onRollOver=function(){  
OVER\_FN(0);  
};  
my\_mc1.onRollOver=function(){  
OVER\_FN(1);  
};  
my\_mc2.onRollOver=function(){  
OVER\_FN(2);  
};  
my\_mc3.onRollOver=function(){  
OVER\_FN(3);  
};  
//rollout  
my\_mc0.onRollOut=my\_mc1.onRollOut=my\_mc2.onRollOut=my\_mc3.onRollOut=function(){  
OVER\_FN();  
};

if anyone is willing to help me solve this problem, I’d appreciate it very much.

Thanks!
