I'm trying to populate a dynamic text box with a number that iterates in a loop. The text box is in a serious of dynamically generated movie clips - here's a clip of the code:
for(i=1;i<=answerCh;i++)
{
attachMovie("answerchoice","ac"+i, i);
//"ac"+i.choiceletter = i; //my attempt
}
How do I get each MC's dynamic text box to populate with "i"?
Thanks,
EB
for(i=1;i<=answerCh;i++)
{
attachMovie("answerchoice","ac"+i, i);
//"ac"+i.choiceletter = i; //my attempt
}
How do I get each MC's dynamic text box to populate with "i"?
Thanks,
EB