whoknows361
Technical User
I am having some trouble with my for loop.. for example:
lets say i'm doing a simple for loop as follows
how would I target that newly created movie clip - say if I wanted to move the x value.
In my movie, this "producttb" mc is full of dynamic tb's and I want to be able to fill those tb's with the appropriate data. However, with the changing I values, I don't know how to target each one. Please help.
Jonathan
ie. _level0.dimmer.contents.whitebox.producttb ?? ._x = 100;
lets say i'm doing a simple for loop as follows
Code:
for(var i = 0; i < myItemList.length; i++){
_level0.dimmer.contents.whitebox.attachMovie("producttb", "producttb" + i, 4000);
how would I target that newly created movie clip - say if I wanted to move the x value.
In my movie, this "producttb" mc is full of dynamic tb's and I want to be able to fill those tb's with the appropriate data. However, with the changing I values, I don't know how to target each one. Please help.
Jonathan
ie. _level0.dimmer.contents.whitebox.producttb ?? ._x = 100;