Rollover Menu Problem

Hi everyone,

I am sure this is a really simple problem but I am very new to Flash.

I have a rollover menu that rolls with the following AS on a movie clip:

stop();

this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}

this.onRollOver = function(){
rewind = false;
play();
}

this.onRollOut = function(){
rewind = true;
}

The menu rolls out, look great. On the last frame in the MC I have stop (); and on another layer I have my buttons for the menu. We all know what coming next… the buttons dont work. I am guessing this is because a button or MC inside another MC wont work, how can i get around this, what should I be doing?

Your advice, as always will be greatly appreciated.