Fai così


codice:
MovieClip.prototype.reverse = function(){ 
this.onEnterFrame = function(){ 
this._currentframe > 0 ? this.prevFrame : delete this.onEnterFrame 
}
Va richiamata così
codice:
 
on(rollOut){ 
nomeMc.reverse() 
}
(per la _root quindi _root.reverse(), per il movieclip 'mc' mc.reverse(),etc..)

dovrebbe funzionare ma non ho provato
avevo sbagliato