Tween Extended Class The TweenExtended class extends Flash's built in Tween class. Usage has been kept the same as the Tween class: Usage example: import mx.transitions.easing.*; // optional: import all easing equations, // or choose from: Back, Bounce, Elastic, Regular, Strong, None import mx.transitions.TweenExtended; var _tween:TweenExtended = new TweenExtended(ball_mc, ["_x","_y","_alpha"], Regular.easeInOut, [ball_mc._x, ball_mc._y, ball_mc._alpha], [50, 350, 50], 5, true); // _tween.onMotionFinished = function(obj) { _tween.continueTo([150, 50, 90],5); } Version: 1.0.5 Updated: 30/03/2005