I was wondering if it was possible to create an array of classes in Flash. Is it possible to do like in C++ where you can do the following?
CDog dog[100];
for ( int i = 0; i < 100; i++ ) {
dog[i] = new Dog();
}
If the above is applicable to flash, the syntax must be different because I was not able to get it working.
I tried using Array, but I think it only works for strings, and integers. I was not able to get it working with classes.
Thanks