AS3 Tutorials – Instantiate Using a Dynamic Class Name
You likely know how to instantiate a class in Actionscript 3 using the new keyword: 1 var someClassInstance:SomeClass = new SomeClass(); But what if you want to instantiate a class where the class name is dynamic? For example, we’re working on a project that has a Character class. We pass it a character name (“Fred”, [...] Keep Reading


(average: 4.77)

