Playing Flash backwards?
Playing Flash backwards?
Out of context: Reply #11
- Started
- Last post
- 11 Responses
- unfittoprint0
MovieClip.prototype.back=functio...
if(this._currentframe-speed >=1 ){
this.gotoAndStop(this._currentfr...
} else {
clearInterval(this.rwLoop)
this.gotoAndStop(1)
}
}MovieClip.prototype.rewind=funct...
clearInterval(this.rwLoop)
if(speed != false) this.rwLoop = setInterval(this, "back", 30, speed);
}//usage
myButton.onRollOver = function(){
MC.rewind(10);
}myButton.onRollOut = function(){
MC.rewind(false);
}