
Код AS3:
public function displayButton():void
{
button.displayButton();
addChild(button);
button.addEventListener(MouseEvent.CLICK, buttonAction);
}
public function buttonAction(e:MouseEvent):void
{
trace("remove");
removeChild(button);
}
Или из самой кнопки

Код AS3:
parent.removeChild(this);