se ho capito bene vuoi mandare tramite as l'animazione al contrario come se la testina dl flash leggesse da dx a sx

Fai così sul primo frame
codice:
MovieClip.prototype.reverse = function(){ 
this.onEnterFrame = function(){ 
this._currentframe > 0 ? this.prevFrame : delete this.onEnterFrame 
}
Va richiamata così

nomeMc.reverse()

(per la _root quindi _root.reverse(), per il movieclip 'mc' mc.reverse(),etc..)