Trouble creating reverse rollover Movies within Movies

[font=Verdana]Hey :slight_smile: ooh my first post.

I have been having trouble creating a movie clip with a reverse rollover effect within a movie which has a reverse rollover effect. that sounds confusing :stuck_out_tongue:

In essence I wish to create a panel that rolls out on rollover and rolls back in reverse when the you rollout. I have done this using this script

[/font] [font=Verdana][font=Arial]stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};[/font][/font]

[font=Verdana][font=Arial]
However I wish to make movies within this movie that have the same effect on them. But when I create another movie or button within this movie it is not registering on rollover. I guess because the script on the main movie overrides it?
[/font][/font]

[font=Verdana][font=Arial]Sorry for the poor explantion, any ideas? :smiley:
[/font][/font]

[font=Verdana]
[/font]