(position:number)
| 115 | } |
| 116 | |
| 117 | public gotoAndStop(position:number):void { |
| 118 | this._currentTime = position; |
| 119 | if (this._isPlaying) { |
| 120 | this._isPlaying = false; |
| 121 | this._timer.stop(); |
| 122 | } |
| 123 | this.step(this._target, this._currentTime, this._duration); |
| 124 | } |
| 125 | |
| 126 | public gotoAndPlay(position:number):void { |
| 127 | this._currentTime = position; |
no test coverage detected