Вы можете отключить его, прослушивая событие mouseDown из окна Alert и вызывая метод stopImmediatePropagation () .
var a:Alert = new Alert();
a.text = "Alert message";
a.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler, true);
PopUpManager.addPopUp(a, this, true);
private function mouseDownHandler(event:MouseEvent):void {
event.stopImmediatePropagation();
}