Scene to Scene with a complex btn...using the .this function

Hello Flash people,

Can someone help me with the below AS. The last part of this script is “getURL” … but I don’t want that, I want to jump from scene to scene. The AS is in a MovieClip_btn( complex btn just not a regular btn) and I have the MC_btn in a MASTER_MC. I hope I make sense.

Attach is a file for reference.

Can someone help me please.

thanks
Carlos

stop();

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

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

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

this.onRelease=function()
{
gotoAndPlay(“about_page”, 1);
}