问题
Is there a way (using the AS 3 Tween Class, NOT TweenMax) to speed up a timeline animation?
回答1:
You can do it with timer, set interval lower than second(1000ms)/fps, and use nextFrame()
回答2:
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);
}
来源:https://stackoverflow.com/questions/6296929/timeline-animation-and-as3-tween-class