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
Va richiamata cosìcodice:MovieClip.prototype.reverse = function(){ this.onEnterFrame = function(){ this._currentframe > 0 ? this.prevFrame : delete this.onEnterFrame }
nomeMc.reverse()
(per la _root quindi _root.reverse(), per il movieclip 'mc' mc.reverse(),etc..)