If im usin function to add a mc to the stage like so:

var myChild:MC= new MC();

function somefunc()
{
   stage.addChild(myMC)
}

but when I try to remove the mc by:

stage.removeChild(myMC)

I get The supplied DisplayObject must be a child of the caller error... any suggestions or work arounds?

link|improve this question
feedback

4 Answers

up vote 0 down vote accepted

You could try hiding and showing the movieClip, if possible. I think its a bit faster than removing and adding consistantly, code permitting. Keep in mind this is just a suggestion, someone smarter than me outta be able to help you out..

link|improve this answer
feedback

Your code should work if the item is on the stage. Perhaps qualifying it with a conditional statement like so:

if (myMC.stage != null)
   stage.removeChild(myMC);

Alternatively you could use the following code but it is probably not best practice.

if (myMC.parent != null)    
   myMC.parent.removeChild(myMC);
link|improve this answer
It works again, thanks, though I overmas had an interesting point with hiding and showin – Ric Aug 11 '11 at 21:39
feedback

You could also use this fail safe:

if(myMC.parent) myMC.parent.removeChild(myMC);

link|improve this answer
feedback

The problem is not with removeChild. It's with the displaylist. If you check the parent property of the displayobject, when you call "removeChild" it will be null.

Why does it become null could be because of lots of reasons:

  • Parent is nulled before the child.
  • The child or parent have event listeners that won't let them die.
  • The Display Object is really not the instance you're trying to remove. THIS one can be very tricky to find out. Look at the "name and parent properties" of the variable you're trying to remove while calling removeChild.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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