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);
removeChild(ldr.content);
removeChild(_closeButton);
container_mc.visible = false;
statusText.text="";
if (contains(submitButton)) {
removeChild(submitButton);
}
if(contains(saveinfoButton)) {
removeChild(saveinfoButton);}
I tried to change stage
with this
and root
but always get this error ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller