How do you get an instance of the actionscript class Class from an instance of that class?
Class
In Python, this would be x.__class__; in Java,
x.__class__
You can get it through the 'constructor' property of the base Object class. i.e.:
var myClass:Class = Object(myObj).constructor;