Load and unload

Hi everyone,

I have this code on top of my movieclip and it seems to only work if I make it a button. Can someone please help!?!?:hangover:

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