[Flashcoders] Array in loop

2009-12-07 Thread Lehr, Theodore
Seems like this should be simple: how do I replace x with arrayName[i] in the following: _root.x._alpha = 0; it is in a for loop... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Array in loop

2009-12-07 Thread Leandro Ferreira
_root[ arrayName[i] ]._alpha = 0; Leandro Ferreira On Mon, Dec 7, 2009 at 15:28, Lehr, Theodore ted_l...@federal.dell.comwrote: Seems like this should be simple: how do I replace x with arrayName[i] in the following: _root.x._alpha = 0; it is in a for loop...

Re: [Flashcoders] Array in loop

2009-12-07 Thread Glen Pike
Lehr, Theodore wrote: Seems like this should be simple: how do I replace x with arrayName[i] in the following: _root.x._alpha = 0; it is in a for loop... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] Array in loop

2009-12-07 Thread Lehr, Theodore
07, 2009 12:32 PM To: Flash Coders List Subject: Re: [Flashcoders] Array in loop _root[ arrayName[i] ]._alpha = 0; Leandro Ferreira On Mon, Dec 7, 2009 at 15:28, Lehr, Theodore ted_l...@federal.dell.comwrote: Seems like this should be simple: how do I replace x with arrayName[i