It's because of how FLVs are encoded. It's far quicker to decompress
it forward than backward. There's really not much you can do, aside
from making a backward FLV (thus doubling download time).

(BTW, you should set onEnterFrame to null once it reaches frame 1.
Telling it to stop() does nothing, as, technically, it's already
stopped.)

On 11/27/06, hbbalfred <[EMAIL PROTECTED]> wrote:
hello, everyone

i tried to imported and embed the flv in swf,then used to the
traditional reverse way to play the swf

mc.gotoAndStop(mc._totalframes);
mc.onEnterFrame = function()
{
if(1 == this._currentframe)
this.stop();
else
this.gotoAndStop(this._currentframe - 1);
}

well that works,but i found the playing movie is very slow at beginning.

i have no idea to do that.
Dose it doable that play the movie to reverse ?
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



--
T. Michael Keesey
Director of Technology
Exopolis, Inc.
2894 Rowena Avenue Ste. B
Los Angeles, California 90039
--
The Dinosauricon: http://dino.lm.com
Parry & Carney: http://parryandcarney.com
ISPN Forum: http://www.phylonames.org/forum/
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to