Flash Question
Flash Question
Out of context: Reply #2
- Started
- Last post
- 10 Responses
- st33d0
I'm making a stack of objects from a custom class.
for(i = 0; i < 100; i++){
var ["dave" + String(i)]:Dave = new Dave();
}Throws a syntax error. I'm getting no love trying to batch instance a class here. I could stick the name in an array but I can't even name it to begin with.