----- Original Message ----- 
From: "Artur Kordowski" <[EMAIL PROTECTED]>
To: <flexcoders@yahoogroups.com>
Sent: Wednesday, July 26, 2006 3:24 PM
Subject: RE: [flexcoders] Create variables dynamic in Flex 2


> But i dont want to use an array. I would like to create those vars on the
> fly.

I don't really see what the difference would be apart from the syntax. 
Referring to myVar1..  myVar10 will still mean that you have to fabricate 
the name dynamically. There's really no difference between doing that and 
having myVar[1].. myVar[10], or the altenatives mentioned by others.

Why do you want to do this specifically this way?

Paul

>
> Artur
>
> -----Original Message-----
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Paul Andrews
> Sent: Wednesday, July 26, 2006 4:07 PM
> To: flexcoders@yahoogroups.com
> Subject: Re: [flexcoders] Create variables dynamic in Flex 2
>
>
> ----- Original Message -----
> From: "Paul Andrews" <[EMAIL PROTECTED]>
> To: <flexcoders@yahoogroups.com>
> Sent: Wednesday, July 26, 2006 3:04 PM
> Subject: Re: [flexcoders] Create variables dynamic in Flex 2
>
>
>> ----- Original Message ----- 
>> From: "Artur Kordowski" <[EMAIL PROTECTED]>
>> To: <flexcoders@yahoogroups.com>
>> Sent: Wednesday, July 26, 2006 2:58 PM
>> Subject: [flexcoders] Create variables dynamic in Flex 2
>>
>>
>>> How can I create in a loop variables dynamicly?
>>> Like this:
>>>
>>> for (var i:uint=0; i == 10; i++)
>>> {
>>> var myVar_i:String = new String();
>>> }
>>>
>>> Any idea?
>>
>> var myVar:Array = new Array();
>> for (var i:uint=0; i == 10; i++)
>> {
>> myVar[i]  = new String();
>> }
>>
>>
>>
>>
>>>
>>>
>>> Artur
>>>
>>>
>>>
>>> --
>>> Flexcoders Mailing List
>>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>>> Search Archives: 
>>> http://www.mail-archive.com/flexcoders%40yahoogroups.com
>>> Yahoo! Groups Links
>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
>> Yahoo! Groups Links
>>
>>
>>
>>
>>
>>
>>
>>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
>
>
>
>
>
>
>
> 




------------------------ Yahoo! Groups Sponsor --------------------~--> 
See what's inside the new Yahoo! Groups email.
http://us.click.yahoo.com/3EuRwD/bOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to