I’m trying to read an array into a flash file and create a movie instance for each of item in the array. I’m able to get the array to write the instances and name them from the array. But when I try to put text into an instance using
while (i < varLength){
duplicateMovieClip (_root.movie, varArray*, i);
varArray*.info.htmlText = varArray*;
i++;
}
I get an error. Does anyone know how I would do this?