Hi I have created a movie clip with a zoom effect, I am trying to make the movie clip act as a button I have tried to use the on release event but its not working I have tried

on (press) {gotoAndPlay (5);

}

on (press) {gotoAndPlay "scene 1" (5);

}



in my movie clip I am using

stop();

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

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

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

I am sure this is something simple but it has me stumped.