Tagged Questions
2
votes
5answers
850 views
Getting error when using the removeChild method
Happy Pre-Halloween everyone :)
My issue today is a DisplayObject error I'm getting when remove a child object. I have code that will launch(addChild) a video container and video controls as well as ...
0
votes
4answers
471 views
AS3 stage.addChild / stage.removeChild << Must be child of caller
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 ...