Reputation: 19463
How can I create dynamic variable in ActionScript?
Example code:
import windows.nwindow;
for(var num:int = 0; num< 2; num++)
{
this["nWin"+num] = new nwindow();
this["nWin"+num].width = 320;
this["nWin"+num].height = 200;
this["nWin"+num].title="window" + num;
this["nWin"+num].open();
}
When I run the above code it dispatch this error:
Error #1056: Cannot create property nWin0 on MultiWindow.
So, how can I use dynamic variable for this case here?
Upvotes: 0
Views: 71
Reputation: 61
you can use a dictionary to achieve this. eg-
var dict:Dictionary = new Dictionary;
for(var num:int = 0; num< 2; num++)
{
var str:String = "nWin"+num;
dict[str] = new nwindow();
dict[str].width = 320;
dict[str].height = 200;
dict[str].title="window" + num;
dict[str].open();
}
Upvotes: 1