Comment
write

Get a tween setting object:

var setting:Object = TweenSprite.setting( start_value, end_value, steps, easing-constant, loops );

Add as many tweens as you like:

sp.addProp( setting, PROP-ROTATION); sp.addProp( setting, PROP-ETC );

Start the animation:

sp.start();

That's it! Download the file for the source code and example.

You can also find additional information on tweening and easing functions online. Robert Penner has a great tutorial on this topic.

— 2009. 06. 11