play flvs backwards?
play flvs backwards?
Out of context: Reply #4
- Started
- Last post
- 4 Responses
- ********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();
}
}