Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This code throws an error:

    if (modalMessage != null && contains(modalMessage))
    {
        removeChild(modalMessage); // the error is here
        modalMessage = null;            
    }

The Error is:

[Fault] exception, information=ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.

how can this be? i am checking if it is a child beforehand.

share|improve this question
Could you post the code where you check if it is a child? – 11684 Apr 12 '12 at 9:02
the check is th contains() – clamp Apr 12 '12 at 9:05
oops , misread... – 11684 Apr 12 '12 at 12:40

1 Answer

up vote 5 down vote accepted

contains() will return true if the subject is a descendant of the caller. This will return true for indirect descendants too, children of children etc.

Determines whether the specified display object is a child of the DisplayObjectContainer instance or the instance itself. The search includes the entire display list including this DisplayObjectContainer instance. Grandchildren, great-grandchildren, and so on each return true.

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/DisplayObjectContainer.html#contains%28%29

You could check the parent:

if(modalMessage && modalMessage.parent && modalMessage.parent == this)

Or, for a more general purpose disposal solution:

if(modalMessage) {
    if(modalMessage.parent) DisplayObjectContainer(modalMessage.parent).removeChild(modalMessage);
    modalMessage = null;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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