(position:number)
| 124 | } |
| 125 | |
| 126 | public gotoAndPlay(position:number):void { |
| 127 | this._currentTime = position; |
| 128 | if (!this._isPlaying) { |
| 129 | this._isPlaying = true; |
| 130 | this._timer.start(); |
| 131 | } |
| 132 | this.step(this._target, this._currentTime, this._duration); |
| 133 | } |
| 134 | |
| 135 | public togglePause():void { |
| 136 | if (this._isPlaying) { |
no test coverage detected