multiple properties tween class
im having trouble figuring out how to script a tween in AS3 with multiple properties. I have the single property syntax down, like such,
import fl.transitions.Tween;
import fl.transitions.TweenEvent;
import fl.transitions.easing.*;
var name:Tween = new Tween( gar, "x", Regular.easeInOut, 60, 300 , 3, true);
but if I want multiple properties, im having trouble finding that info.
thanks.
