How would I use the Tween class to perform a tween with MORE THAN one property? for example:
var tween1:Tween = new Tween(some_mc, "x", Bounce.easeOut, some_mc.x, someOtherX, 1, true);
I want to tween the “y”, “width”, and “height” properties also.
How do I accomplish this? Is there a way through the Tween class?