I have a Class object, and besides finding the class name of an object, is it possible to get the class name from the Class object?
Asked
Active
Viewed 2.5k times
2 Answers
21
If you just need the class name, consider using flash.utils.getQualifiedClassName. describeType operations can be slow so if you don't need the other data it will be faster.
-
8capital 'N': ``flash.utils.getQualifiedClassName`` – null Apr 08 '13 at 22:51
4
The describeType() function will help you. By passing the class to it, it will return XML detailing all you need to know about the class including its name.

Glycerine
- 7,157
- 4
- 39
- 65