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
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();
}
}
}
read this, good stuff:
http://www.actionscript.org/forums/showthread.php3?t=61477&highlight=backwards
cheers.
j
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.