Re: [Flashcoders] nested for loops stumper

2008-01-25 Thread Muzak
] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, January 25, 2008 6:23 PM Subject: Re: [Flashcoders] nested for loops stumper so then would it be this._parent[mc_+i] ? enlighten please. On Jan 25, 2008 9:08 AM, Muzak [EMAIL PROTECTED] wrote: You should never have to do

Re: [Flashcoders] nested for loops stumper

2008-01-25 Thread Muzak
, 2008 3:53 PM Subject: RE: [Flashcoders] nested for loops stumper yep, you need some kind of scope declaration to tell you where the items are. a lot of people use thisRoot = this; (or something that states the location) and then all you have to do is pass 'thisRoot' around as a reference

RE: [Flashcoders] nested for loops stumper

2008-01-25 Thread Rob Emenecker
yep, you need some kind of scope declaration to tell you where the items are. a lot of people use thisRoot = this; (or something that states the location) and then all you have to do is pass 'thisRoot' around as a reference to where that item is. That way you never have to say 'this'

Re: [Flashcoders] nested for loops stumper

2008-01-25 Thread Bob Wohl
- From: Rob Emenecker [EMAIL PROTECTED] To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com Sent: Friday, January 25, 2008 3:53 PM Subject: RE: [Flashcoders] nested for loops stumper yep, you need some kind of scope declaration to tell you where the items are. a lot of people use

[Flashcoders] nested for loops stumper

2008-01-24 Thread Dwayne Neckles
I 4 movie clips on the stage named scrollx where x are numbers 0- 3 and within each scrollx clip i have 5 nested movieclips..is called clipx where x are numbers 0-4 YET when i run the function below.. tracing scroll works but not scrollx.clipx yet j traces fine.. any suggestions??? also the

RE: [Flashcoders] nested for loops stumper

2008-01-24 Thread Dwayne Neckles
: [Flashcoders] nested for loops stumper I 4 movie clips on the stage named scrollx where x are numbers 0- 3 and within each scrollx clip i have 5 nested movieclips..is called clipx where x are numbers 0-4 YET when i run the function below.. tracing scroll works but not scrollx.clipx yet j

Re: [Flashcoders] nested for loops stumper

2008-01-24 Thread Bob Wohl
] To: flashcoders@chattyfig.figleaf.com Date: Fri, 25 Jan 2008 01:52:58 + Subject: [Flashcoders] nested for loops stumper I 4 movie clips on the stage named scrollx where x are numbers 0- 3 and within each scrollx clip i have 5 nested movieclips..is called clipx where x are numbers 0-4