Googling around, I see plenty of advice on populating an array with movie clips. Fine, useful, but I already know how to do that.
What I’m trying to is populate an array that occurs in each instance of a movie clip:
for(i=0; i<something; i++) {
//attach the movie first
//the clip with linkage an MC has an empty array called someStuff
clipName="anMC_"+i;
thisClip=_root.attachMovie("anMC", clipName, i);
//now populate the array someStuff in each of the clips
//***THIS DOES NOT SEEM TO WORK***
for(j=0; j<somethingElse; j++) {
thisClip.someStuff[j]=otherStuff[j];
}
}
Tried giving the movie clip some time, the stage some time, etc. No matter what I do, though, the array in all instances of anMC comes out completely empty.
Would simplify what I’m trying to do a great deal, but that’s presuming that what I’m talking about is even possible. So… my question basically is… can this even be done? Apparently it’s not possible… if I’m right about this, why is this so?