This will return the character name (String).
getQualifiedClassName(yourSymbolInstance);`
This will give you the class object of your instance.
var c:Class=yourSymbolInstance.constructor;
addChild(new c());
If you do not export your character, the character name will be MovieClip.
source
share