Hello Flash peopl,
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 frame to frame in my Master MC. The AS is in a MovieClip and I have the MC in a MASTER_MC. I hope I make sense.
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(){
getURL(“http://www.kirupa.com”,"_blank");
}