mi servirebbe in as2 di mandare al contrario un filmato incorporato... ho provato ad usare diversi script tipo questo:
codice:
MovieClip.prototype.playF = function(m, n, fps) {
    function playF2(mc) {
        if (mc.m<mc.n) {
            mc.nextFrame();
        } else {
            mc.prevFrame();
        }
        if (mc._currentframe == mc.n) {
            clearInterval(mc.int);
        }
        updateAfterEvent();
    }
    this.m = m;
    this.n = n;
    this.fps = fps;
    this.gotoAndStop(this.m);
    clearInterval(this.int);
    this.int = setInterval(playF2, 1000/this.fps, this);
};
MovieClip.prototype.stopF = function() {
    clearInterval(this.int);
};

//----------------------- don't change anything above this line -------------------------

myMovieClip.initialize();
// to apply to your main timeline and play from frame 44 to 11 at 15 fps:

myMovieClip.playF(115,1,120); 

// to rewind from the current frame to frame 1 at 25 fps:

//myMovieClip.playF(this._currentframe,132,40);
il filmato va al contrario ma lentissimo...Idee???