Forum Moderators: open

Message Too Old, No Replies

Flah Movie Clip Button Help

Flash Movie Clip Button

         

wun1luv

3:21 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



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?