Navigation issue

This may sound a bit amaturish, but I’m just getting comfortable building 1-frame Flash movies. In other words, all the motion in my movie comes from movie clips, including the menu. Which brings me to my problem…

When I click (onPress) on a menu item and it summons several other movie clips to gotoAndPlay. Now, every subsequent onPress on the same menu item makes the same clips repeat their animations. This looks sloppy. Once the menu item is pressed, I’d like to disable it. Consequently, when any other menu item is pressed, I’d like to make the rest of the menu active again.

What would be the right approach here?

You could use myButton1.enabled = false; and then on the button you could do this for the all the other buttons mybutton2.enabled = true;

Okay, that almost works…

My problem now is that all the button movie clips are stacked. So if one that is ‘enabled = true’ is on top, the rest below cant be viewed onRollover.

name your buttons instance name of “btn1”, “btn2” etc. Let there be 8 buttons totally.
on(press){
for(i=0;i<8;i++){
_root[“btn”+i].pressed=false
}
if(!pressed) _root.movieclip.gotoAndPlay(2)
pressed=true

}