Hi,

I need help figure out if it is possible to use an array with the TransitionManager. So far, I did not have any luck..

This is my code:

Code:
var boxArray:Array = [box1_mc, box2_mc, box3_mc, box4_mc, box5_mc, box6_mc, box7_mc, box8_mc];

var wipe_obj:Object = new Object();
wipe_obj.type = Wipe;
wipe_obj.direction = Transition.IN;
wipe_obj.duration = .5;
wipe_obj.easing = Strong.easeIn;

TransitionManager.start(boxArray, wipe_obj);

Any idea? Thanks!