[flexcoders] What's this Called?

2008-03-24 Thread Nate Pearson
When I do this[idOfsomethingImLookingfor] I usually do this if I have to loop something. So: for (i=0; i10; i++){ var example:Object = this[myComponent + i] //do some more stuff } I'm trying to do the same thing in .NET. I don't know what it's called though so I'm having a hard time

RE: [flexcoders] What's this Called?

2008-03-24 Thread Gordon Smith
@yahoogroups.com Subject: [flexcoders] What's this Called? When I do this[idOfsomethingImLookingfor] I usually do this if I have to loop something. So: for (i=0; i10; i++){ var example:Object = this[myComponent + i] //do some more stuff } I'm trying to do the same thing in .NET. I don't know what it's

RE: [flexcoders] What's this Called?

2008-03-24 Thread Kevin Aebig
: [flexcoders] What's this Called? When I do this[idOfsomethingImLookingfor] I usually do this if I have to loop something. So: for (i=0; i10; i++){ var example:Object = this[myComponent + i] //do some more stuff } I'm trying to do the same thing in .NET. I don't know what it's called though so

RE: [flexcoders] What's this Called?

2008-03-24 Thread Tracy Spratt
Sent: Monday, March 24, 2008 9:47 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] What's this Called? That's called bad practice. The lookup method you're referring to is called an associative array or dictionary. !k From: flexcoders

Re: [flexcoders] What's this Called?

2008-03-24 Thread Josh McDonald
, 2008 9:47 PM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] What's this Called? That's called bad practice. The lookup method you're referring to is called an associative array or dictionary. !k -- *From:* flexcoders@yahoogroups.com [mailto

Re: [flexcoders] What's this Called?

2008-03-24 Thread Aaron Miller
to for that matter? Tracy -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Kevin Aebig *Sent:* Monday, March 24, 2008 9:47 PM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] What's this Called? That's called bad

Re: [flexcoders] What's this Called?

2008-03-24 Thread Muzak
Of Nate Pearson Sent: Monday, March 24, 2008 6:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] What's this Called? When I do this[idOfsomethingImLookingfor] I usually do this if I have to loop something. So: for (i=0; i10; i++){ var example:Object = this[myComponent + i] //do some