How do I get the list of all methods from an object? I know I can get the object class in this way:
var className:String = flash.utils.getQualifiedClassName( myObject );
var objClass:Class = flash.utils.getDefinitionByName( className ) as Class;
It gives me an the class prototype, but and can't do anything with it...
In JavaScript I can iterate over the prototype of an object to get its properties and methods.
Is that possible in ActionScript 3? Do you any good source for metaprogramming/reflection over ActionScript 3?
Thanks!