array of objects
array of objects
Out of context: Reply #23
- Started
- Last post
- 23 Responses
- unfittoprint0
a lot of confusion there.... you use push in your array and then try to populate the [i] index...
it's one way or the other...
and istead of
this.createEmptyMovieClip(cont, 1);
mymc = this[cont];this is enough:
mymc = this.createEmptyMovieClip(cont, 1);