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