Hi,
I’m making a gallery using XML data and loading the information into a mc instance that are in turn being attached to the stage via linkage id.
My question is this: I need to make all of those instances fade out with a function, and I have created a for loop to do this, however it is not working… Any suggestions on how to make it work?
function allFade(){
for (d=0; d<caseCount; d++){
var me:String = "case" + [d]; // case is the instance name that I attached to the stage using xml. (case0,case1,case2...)
_level0.content.eclip.me._alpha = 15;
}
}
allFade();
Any suggestions on how to manipulate the movie attached movie clips after they have been attached to the stage would be majorly appreciated, it has been the only thing holding me back from dynamic content.
Thanks