the menu moves by a simple motion tween. the motion tween gets activated by the mouse click (although i haven’t put any actionscript to activate it), then closes via mouse click (which i want to avoid).
i am saving it as a flash mx 2004 doc…not sure why you can’t open it.
is there any part of the coding you want me to paste?
I currently have an invisible button to start the animation, and an invisible button to close the menu. The problem is, if I roll over the same button, the menu will in a sense, loop over. I used some if/else script which might be the problem.
on (rollOver) {
if (_root.menu_drop._currentframe=“15”) {
_root.menu_drop.gotoAndPlay(“16”);
} else if (_root.menu_drop._currentframe=“1”) {
_root.menu_drop.stop();
}
}