Hi.
I've been trying to use movie clip buttons with not much success. I found code on a flash help site that works with getURL but I cant substitute any other function without getting lots of errors. I would like the clip to work with gotoAndPlay scene function. If not that, just anything that would click to a separate scene. Here is the code im working with:
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.google.com");
}
Any Ideas?