hello … I wish to create multiple variables at runtime. ie:
var lc1:LocalConnection = new LocalConnection();
var lc2:LocalConnection = new LocalConnection();
var lc3:LocalConnection = new LocalConnection();
but with using a while/for loop. Because I want dynamic use of multiple connections … Is this possible … I cant get it to be figured… I have tried
for(i=0;i<3;i++){
var ["lc"+i]:LocalConnection = new LocalConnection();
}
any ideas out there??
thanks