Is there something like C's sprintf() ??
I've got var0 -> varN loading in, then :
Code:
for(i = 0; n < N; i++){
  .......
   mc.name = var0;  // <-- works
   mc.name = var + i; // <-- don't work
  .......
}
See where the issue is?? Can't seem to get my head around this for the moment. (If only I could do all the PHP , and not the actual integration into flash )

Thanks.