Skip to content

Instantly share code, notes, and snippets.

@amowu
Created December 4, 2012 11:04
Show Gist options
  • Save amowu/4202719 to your computer and use it in GitHub Desktop.
Save amowu/4202719 to your computer and use it in GitHub Desktop.
Get a Class Reference by Class Name
import flash.utils.getDefinitionByName;
var ClassReference:Class = getDefinitionByName("CLASS_NAME") as Class;
var obj:Object = new ClassReference();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment