Alert 加监听事件

来源:互联网 发布:自助建站好优化吗 编辑:程序博客网 时间:2024/05/02 02:33

import mx.events.CloseEvent; 
   private var alert:Alert;
   public function buttonClick():void{
    if( EditAdd1.text=="" ){
     Alert.buttonWidth = 100;
     Alert.yesLabel = "确定";
     Alert.buttonHeight = 30;
     alert=Alert.show("请输入被加数","提示",1,this);
     
     alert.addEventListener(CloseEvent.CLOSE, alert_close);
         
     return;
    }    
   }
   private  function alert_close(e:CloseEvent):void{
    focusManager.setFocus(EditAdd1); 
   }

 

 

原创粉丝点击