I have a menu button that when rolled over, I would like a bigger box above the button to display with more button options. I currently am having the second box to stay up or turn off when I wan it to.

On the menu button, I have this code on the stage.
Code:
on (rollOver) {
	_root.videoroll.gotoAndPlay("Show");
}
There is a videoroll movieclip also on the stage that has 2 labels, hide and show inside its timeline. The hide has nothing on the stage. The show has all of the other buttons on that frame.

This code does open and display the second options. Problem is getting it back to hide. It seems that when I rollover the main menu button again, it goes away, but I really want it to go away if my cursor leaves the second menu. I don't want the user to have to go back down to the main menu button to turn it off.

I have tried to put a box button inside the videoroll movieclip that has a rollout event to go to hide.
Code:
on (rollOut) {
	_root.videoroll.gotoAndPlay{"Hide"};
}
After doing this, the second menu closes once I get to the first menu option inside.

Here is a link to the fla file. Sorry it is too large to attach to post. Hopefully this will work.

http://www.mccoolmediainc.com/downlo...ddler_rev1.fla

Please help. Thanks.