----- 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

<*> 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