How do I get this work inside of a movie clip

How do I get this work inside of a movie clip
this code work perfectly on the main movie but when I put the button inside of movie dont work thanks for the help

on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “page1”;
container.loadMovie(“page1.swf”);
} else if (_root.currMovie != “page1”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “page1”;
container.play();
}
}
}