Is there a way (using the AS 3 Tween Class, NOT TweenMax) to speed up a timeline animation?
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);
}