RE: [Flashcoders] targetting a mc from a list

2006-01-30 Thread Adrian Lynch
Try: parent_mc[listWhatever[0]]; Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kent Humphrey Sent: 30 January 2006 13:25 To: Flashcoders mailing list Subject: [Flashcoders] targetting a mc from a list I have a list: (code is example only

Re: [Flashcoders] targetting a mc from a list

2006-01-30 Thread Kent Humphrey
January 2006 13:25 To: Flashcoders mailing list Subject: [Flashcoders] targetting a mc from a list I have a list: (code is example only) listWhatever = [mc1, mc2]; This list is cycled through to generate some mcs inside parent_mc. I now want to target one of those mcs again. Lets say I want

RE: [Flashcoders] targetting a mc from a list

2006-01-30 Thread Adrian Lynch
: [Flashcoders] targetting a mc from a list Thanks, but that doesn't work either. It looks like it should, but I'm still getting undefined. On 30 Jan 2006, at 13:31, Adrian Lynch wrote: Try: parent_mc[listWhatever[0]]; Ade -Original Message- From: [EMAIL PROTECTED] [mailto

RE: [Flashcoders] targetting a mc from a list

2006-01-30 Thread Merrill, Jason
: [Flashcoders] targetting a mc from a list Thanks, but that doesn't work either. It looks like it should, but I'm still getting undefined. On 30 Jan 2006, at 13:31, Adrian Lynch wrote: Try: parent_mc[listWhatever[0]]; Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [Flashcoders] targetting a mc from a list - solved

2006-01-30 Thread Kent Humphrey
ok, found the problem, my actual list has strings with spaces in them, which is what is making it not work. So I guess I'll fill them with _ and then replace them with when I need the string with spaces. Thanks for the help guys. On 30 Jan 2006, at 14:00, Adrian Lynch wrote: Are you

RE: [Flashcoders] targetting a mc from a list - solved

2006-01-30 Thread Adrian Lynch
Ah, so you had a [mc 1, mc 2] type thing going on? Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Kent Humphrey Sent: 30 January 2006 15:02 To: Flashcoders mailing list Subject: Re: [Flashcoders] targetting a mc from a list - solved ok, found

Re: [Flashcoders] targetting a mc from a list - solved

2006-01-30 Thread Kent Humphrey
Well, yeah, these list items need to be client names and that kinda thing, so might be a single word, might be 3 or 4 words. String wrangling to the rescue. On 30 Jan 2006, at 15:10, Adrian Lynch wrote: Ah, so you had a [mc 1, mc 2] type thing going on? Ade