Not sure if the subject title really describes what i want, but its the best i could think of. :hangover: Anyways, the problem is that I have a code similar to this (its been shortened so the problem is easier to understand):
[AS]
for (index=0; index<12; index++) {
frameHolder = this.createEmptyMovieClip(“frameHolder”+i, i);
i++
}
frameHolder.i = i;
frameHolder.onRelease = function() {
openPopUp(i);
};
[/AS]
So basically what i want is to have the frameHolder function target ALL the dynamically created MC’s - frameHolder1, frameHolder2…frameHolder12
But when you trace the function, frameHolder only equals “frameHolder12”, so therefore the function only works for the 12th MC. I hope you’re not confused, but thats the best i can explain this. Thanks :beam: