vote up 9 vote down star
2

How do you get an instance of the actionscript class Class from an instance of that class?

In Python, this would be x.__class__; in Java, x.getClass();.

I'm aware that certain terrible hacks exist to do this, but I'm looking for a built-in language facility, or at least a library routine built on something reliable.

flag

50% accept rate

3 Answers

vote up 17 vote down check

You can get it through the 'constructor' property of the base Object class. i.e.:

var myClass:Class = Object(myObj).constructor;
link|flag
That works too :D – fenomas Oct 15 '08 at 8:22
Wow that actually works! Where did you find that little gem? – Iain Oct 15 '08 at 9:33
As far as I know it's my own gem, though the Adobe docs for the Object class mentions the constructor property and what it is. I've never seen it used that way anywhere else. – Gerald Oct 15 '08 at 11:12
That's brilliant. Love this site. – Jason Maskell Mar 18 at 17:33
1  
This does not work on objects that subclass Proxy, such as XML. See this answer - stackoverflow.com/questions/468925/… – Richard Szalay Jul 26 at 8:51
show 1 more comment
vote up 3 vote down

Any reason you couldn't do this?

var s:Sprite = new flash.display.Sprite();

var className:String = flash.utils.getQualifiedClassName( s );
var myClass:Class = flash.utils.getDefinitionByName( className ) as Class;

trace(className ); // flash.display::Sprite
trace(myClass); // [class Sprite]

var s2 = new myClass();
trace(s2); // [object Sprite]

I don't know a way to avoid round-tripping through a String, but it should work well enough.

link|flag
This would work, but the performance for getQualifiedClassName and getDefinitionByName is pretty poor. mike chambers – mikechambers Jul 13 at 21:25
vote up 0 vote down

Thanks fenomas. This is the exact thing I was looking for.

I have a class 'Child' that extends from 'Parent'. I need to access Child's static properties from the parent.

I passed myClass when I called the super(); method in the 'Child' class.

If there is a better way to do please let me know.

link|flag
I could answer that but you should create a separate question. – Mims H. Wright Nov 19 at 17:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.