HI guys,
I am making a small school project and I copied one tutorial here about cool rollover. The thing is, when I added an AS that loads an external movie (which I also copied here) it’s not working.
Can you tell me, point me to the right direction here?
Please take a look at my source files.
WEB: http://www.allanrestauro.com/downloads/pub/web.zip
FLA: http://www.allanrestauro.com/downloads/pub/interface3.fla.zip
I copied an AS from this kirupa link:
http://www.kirupa.com/developer/mx2004/button_effect.htm
I spent all day and my script just don’t work!
//all this code is inside the complex button so you can stick as many as you want
//on the stage and all will work.. they all will have this code in it..
stop(); // stop the movie clip from playing (stop button from growing, we want that when the mouse rolls over only
this.onEnterFrame = function(){
if(rewind == true){ //if rewind switch is set to true play backwards
prevFrame(); // play backwards
}
}
this.onRollOver = function(){
rewind = false; //set variable (or switch) that decides wether ot not to play backwards...
play(); // play this movie clip.. (grow the button(tween));
}
this.onRollOut = function(){
rewind = true; //set or rewind switch to true so it will play backwards...
}
this.onRelease = function(){
container_mc.loadMovie('swf/contact.swf','0');
}
take note of the ON.RELEASE function in the AS.
thank you