Was wondering if anyone could provide me with a link or anything to help me get an idea of how to do roll-outs, as opposed to roll-overs
you can have you roll out animation on lets say frame 10, and then use a script like this
myMovieClip.onRollOut = function()
{
gotoAndPlay(10)
}
or you can play the animation backwards…
MovieClip.prototype.out = function() {
this.onEnterFrame = function() {
this._currentframe != 1 ? this.prevFrame() : delete this.onEnterFrame;
}
}
myMovieClip.onRollOut = out;
=)
yeah… kax knows
yeah… i know :sure: