I have a menu consisting a movie clip with several buttons linking to different scenes and named frames within scenes. The menu appears when a user hits the space bar using the following code placed on a blank "listener" movieclip:

onClipEvent (load) {
_global.stopped = false;
}
on (keyPress "") {
_root.clipboard.nextFrame();
if (_global.stopped) {
_root.play();
_global.stopped = false;
} else {
_root.stop();
_global.stopped = true;
}
}


The stopped variable is so that the movie will pause when the menu is up, selfPaced simply prevents the movie from advancing during certain scenes.

The buttons on the menu each have the following code:

on (release) {
_global.stopped = false;
_root.gotoAndPlay("3d");
_root.clipboard.gotoAndPlay(7);
}

where "3d" could be any label.

Here is the strange thing: Everything works fine EXCEPT in scene three. Then two of the button simply stop working. The cursor will change to a hand, but the mouseOver action does not work and I can't click them. I have even tried cutting and pasting the menu from another scene, but nothing seems to work. I've also examined the code over and over and it is identical to all of instances of the menu in other working scenes. Any suggestions?