Multiple Movie Clips

Hi everyone,

I have 2 movie clips (so far) on my main timeline. Also on my main timeline I have a rewind button. The rewind button rewinds correctly for my first movie clip named main1_mc which is on the frame labeled “screen”. But when it reaches my second movie clip and I want to rewind the entire movie, the first movie clip rewinds in front of the second movie clip. So the second movie clip is still there and the first movie clip appears on top and rewinds. My second movie named “mainr_mc” is also on my main timeline on the frame labeled “resources”. So I’ve tried multiple variations of removeMovieClip with _root and all (as commented in the code below) but nothing seems to work. Any suggestions? Here’s my AS for my rewind button (which is also on my main timeline) below:

// ========== REWIND BUTTON ==========
prev.onPress = function() {
//removeMovieClip("_root.mainr_mc");
_root.next._visible = true;
_root.createEmptyMovieClip(“controller_mc”, 1);
controller_mc.onEnterFrame = function() {
_root.screen.gotoAndStop(_root.screen._currentframe-3);
if (_root.screen._currentframe-3<1) {
_root.gotoAndStop(“screen”);
}
};
};
prev.onRelease = function() {
controller_mc.removeMovieClip();
_root.next._visible = true;
//removeMovieClip("_root.mainr_mc");

};
prev.onReleaseOutside = function() {
controller_mc.removeMovieClip();
_root.next._visible = true;
//removeMovieClip("_root.mainr_mc");
};