actionscript3.0

addEventListener(MouseEvent.CLICK, clickAction);
function clickAction (e:MouseEvent):void
{
addChild(btn_mc);
}

//for every click it will adds a new btn_mc instance on the stage…
I wants to add the btn_mc instance to the stage at only once… How can I achieve this?