[F8] link to scene from RollOver

Hi everyone…i took AS from this site which makes RollOver & Roll Out. all i need is to link it to a scene in the flash file and not to an URL as it is now…is this possible ?!

i tried Goto but it didn’t work ?!

Thanx

this is the code:


//stop();
 
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
 
this.onRollOver = function(){
rewind = false;
play();
}
 
this.onRollOut = function(){
rewind = true;
}
 
this.onRelease = function(){
getURL("[http://www.kirupa.com","_blank](http://www.kirupa.com)");
}