PDA

View Full Version : Play Reverse


skomi101
01-20-2005, 08:27 PM
Hello there,

I need to know if Flash can play the movie reverse, without having to re-animate the elements.
It's probably asked many times but I cannot find the answer.

Thanks

beau
01-20-2005, 09:59 PM
your_mc.prevFrame() will step you backwards in the movie.

To have the whole movie run, I think you need to either create a function that's called via onEnterFrame.

Gibberish
01-20-2005, 10:05 PM
maybe something along these lines.


playbackwards = function(){
//Frame to go back to
goBack = 2;
this.onEnterFrame = function(){
if (yourMC._currentframe == goBack){
this.onEnterFrame = null;
}else{
yourMC.prevFrame();
}
}
}

tGP
01-21-2005, 08:20 AM
read this, good stuff:
http://www.actionscript.org/forums/showthread.php3?t=61477&highlight=backwards

cheers.
j