Tagged Questions

2
votes
3answers
877 views

Removing Parent in AS3: Does this free the memory used by all the children?

I'm making a rather large flash project and so I'm concerned about memory usage. At the end of each section of the application I remove the overarching parent element that holds the content. Although ...
2
votes
5answers
833 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
340 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 ...
0
votes
2answers
416 views

Actionscript 3 remove child at point

hi i'm new to AS3 and i was wondering what is the best way to remove a child at a point. i tried Holder.removeChild(Holder.getObjectsUnderPoint(new Point(exampleX, exampleY))[0]); however that ...
0
votes
2answers
4k views

ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller error - AS

I have this code snippet inside a function that checks if an object exists on stage and removes it: public function closeContent(e:MouseEvent):void { removeChild(txt); ...