I would like to check if object has a DisplayObject as one of it's ancestors and perform some operations on it if it has. Any quick and easy way to do this?
|
feedback
|
|
If by "ancestor" you mean "one of superclasses", then the solution is simple: in ActionScript an object can have "a DisplayObject as one of it's ancestors" only if object's class has DisplayObject in it's inheritance chain, which is easily checked by casting. Inheritance creates "IS A" relation between parent and child classes, so a child's instance IS An instance of parent (and of any other distant ancestor).
or
| |||
|
feedback
|
|
complete rewrite due to misunderstanding the question Edit A faster way than my first suggestion is to use a combination of
What you need is the describeType function from flash.utils. This produces an XML representation of the object, including the full list of ancestor classes back to Object. The beginning of the output for MovieClip looks like this:
So all that remains for you to do is loop though the extendsClass nodes and check for the presence of | ||||
|
feedback
|