play flvs backwards?
- Started
- Last post
- 4 Responses
- theplanet
Is it possible to play flvs in reverse? After they paly forward, play them in reverse?
That is my question.
Thanks
Josh
- Nairn0
..unless it was a pure, straight timeline animation it simply wouldn't work - unless you could magically reverse all the called events. Even so, I can't recall any means of simply reversing the frame seuqence in a .swf (obviously in a .fla you can, but I'm sure you wouldn't ask if it were that simple!)
- UndoUndo0
use the prevFrame() func, but I would look to see what happens to yr processor when using it with an interval
- theplanet0
Yeah, I want to dynamically load alot of different flvs and then paly them forward then in reverse.
I dont want them to all load with the swf.
Anyone else have any idea if this ois even possible?
Josh
- ********0
have you tried things like..
mymovie.onLoad = function(){
this.theEnd = this._framesloaded;
this.gotoAndStop(this.theEnd);
cnt = theEnd;
}
mymovie.onEnterFrame = function(){
if(cnt != 0){
gotoAndStop(cnt);
cnt--;
} else {
this.stop();
}
}