Reversing Animation

This is a little hard to explain so please bear with me.

I have a button and a movie clip. I want to tell target the mc using the RollOver and RollOut actions that I have applied to my button. However, I want the movieclip to reverse rather than have the mc just jump to a named frame where the animation is created in reverse.

If I can just get a script that will make the frames of that mc reverse rather than recreate the whole thing in reverse manually then it would say an awful lot of file space, also you wouldn’t get that jerky motion if you were to roll off your button before the first sequence of the animation is played, thus making the mc jump to your rollout sequence before the RollOver sequence had finished. Am I making sence or just babbling?

Anyone who can help would be my new friend!!

use prevFrame();
for the mc
onClipEvent(enterFrame) {

if(_root.mcplayreverse) {
this.prevFrame();
}
}

or sumthin’ like this…
and on the button you put th action to trigger it.

on(rollOver) {
_root.mymc.play();
_root.mcplayreverse = false;
}

on(rollOut)
_root.mcplayreverse = true;
}
And the in the first frame of the anim put the actions
stop();
_root.mcplayreverse = false;
… it should work… =)

It didn’t work. The animation didn’t play.

Movieclip.prototype.backUp = function(howManyFrames) {
	this.createEmptyMovieClip('revController', 100);
	this.revController.howMany = howManyFrames;
	this.revController.onEnterFrame = function() {
		if (this._parent._currentframe>1 and this.howMany>0) {
			this._parent.gotoAndStop(this._parent._currentframe-1);
			this.howMany--;
		} else {
			this.removeMovieClip();
		}
	};
};
<B>timelineToReverse</B>.backUp(<B>howManyFramesToReverse</B>);

I forget where I got that, I think it was actionscript.org. Anywho… edit what is bold.

Also, you can apply the “<B>timelineToReverse</B>.backUp(<B>howManyFramesToReverse</B>);” on a button.

Ah yes… here it is…

http://www.actionscript.org/actionscripts_library/main/search.cgi?query=Reverse+Play

hum… ok I screwed sumthn’ up :-
lostinbeta to the rescue!

And here I’ve been slaving away manualy reversing my MC’s to play out. I’ll have to check this out tonight and see if it works with my animations.:beam:

Thanks everyone!

no problem :slight_smile:

Come on, Lost, stop being griddy, he said everyone! :stuck_out_tongue:

Well then you can say no problem too.

I can only speak for myself. I can’t speak for others :slight_smile: :stuck_out_tongue:

no problem :slight_smile: =) lol