views:

556

answers:

2

Erm, that's it!...

+1  A: 

If memory serves me right, a method flash.utils.describeType hands you an xml document with all reflected typeinfo of an object/type.

Indeed: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/package.html#describeType%28%29

spender
+1  A: 

The function is called typeof(). http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/operators.html#typeof

Chiwai Chan
Will give you back 'object' for all but 5 predfined types.
spender