Search code examples
actionscript-3timelinetween

Timeline animation and AS3 Tween Class


Is there a way (using the AS 3 Tween Class, NOT TweenMax) to speed up a timeline animation?


Solution

  • tween = new Tween(this, 'frame', None.easeIn, 148, 172, .5, true)
    
    private var _frame:int;
    
    public function set frame(value:Number):void {
            _frame = int(value);
            myMovieClip.gotoAndStop(_frame);
    }