Alert按钮的事件侦听
public function closeCallBackTest(event:CloseEvent):void
{
if(event.detail == Alert.YES)
{
initApp2();
_isNoInsDebug = true;
return;
}
if(event.detail == Alert.NO)
{
initApp();
_isNoInsDebug = false;
return;
}
}