create an array of the instance names of your movie clips, and use a for loop to apply the transition to all of them.
var mcNames:Array = new Array(GJack_mc, Another_mc, Again_mc, More_mc);
for(var i = 0; i<mcNames.length; i++){
var t:Tween = new Tween(mcNames[i], "_alpha", Strong.easeIn, 0, 100, 1,
true);
};
dtodab - 12 Jul 2008 16:25 GMT
thanks for the help. things are working more or less....
just wondering how to apply it across several frames. i've placed the code on
the first frame of each image section, but it seems to only work for that one
frame. perhaps i'm not placing the code in the proper section.
any advice?