The Objects exist and are on the stage. I am trying to tween multiple objects at once:
import fl.transitions.Tween;
import fl.transitions.easing.*;
var buttons:Array = new Array("resMov", "comMov", "govMov", "garMov", "meetMov");
for (var i:Number = 0; i < buttons.length; i++) {
var tweener:Tween = new Tween([buttons*], "y", Back.easeOut, 550, 447.4, 1, true);
}
Currently, it doesn’t do anything at all. If I remove [] from buttons*, it says “cannot create property y on String.”
Is there a way to do this?