Re: [Flashcoders] can make the flv play to reverse?

2006-11-28 Thread hbbalfred
ok,thank you for you reply :) From: T. Michael Keesey [EMAIL PROTECTED] Subject: Re: [Flashcoders] can make the flv play to reverse? 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

[Flashcoders] can make the flv play to reverse?

2006-11-27 Thread hbbalfred
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

Re: [Flashcoders] can make the flv play to reverse?

2006-11-27 Thread T. Michael Keesey
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,