Tweening with different Eases

is there a way to use the Tween class and pass in a different easeIn and easeOut?

instead of just having Strong.easeInOut, I would like to have Strong.easeIn and Regular.easeOut

so instead of:


var xTween:Tween = new Tween(this,"x",Strong.easeInOut,x,endx,dur,true);

i would like a Strong.easeIn and Regular.easeOut for the easing, so that my object would have a high acceleration, but a slow deaccelaration.

thanks
-mad_man

Here are two recommendations for you sport!

http://code.google.com/p/tweener/
http://blog.greensock.com/tweenmaxas3/

thanks sport :slight_smile:

Just an extra word of advice, don’t use the flash library tween class. I tried using it once but it regularly failed, and either didn’t complete, or didn’t execute at all. I wound up making my own simple version of it, but it looks like there are lots of free ones available.