remove child
i want to delete object which i early created using addchild.
here is the code i try to do that
function popup(event:MouseEvent):void
{
var _pentagen_02:pentagen = new pentagen();
addChild(_pentagen_02);
_pentagen_02.x = 350;
_pentagen_02.y = 200;
_pentagen_02.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
_pentagen_02.addEventListener(MouseEvent.MOUSE_WHEEL, size);
_pentagen_02.addEventListener(MouseEvent.MOUSE_UP, dropIt);
_pentagen_02.buttonMode = true;
}
function delobject():void
{
if (endX < _imageX )
{
removeChild(_pentagen_02);
}
}
i also try to using " removeChild(this); " but this also not work.