I’m using Kirupa’s animation rewind script for playing animation forward and backward upon rollover. I need to make a window of a certain size pop-up when the user clicks on the movie. Can someone help me with this? Right now I’m using this:
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){
prevFrame();
}
}
this.onRollOver = function(){
rewind = false;
play();
}
this.onRollOut = function(){
rewind = true;
backwards…
}
this.onRelease = function(){
getURL(“http://www.-----------.htm”);
}