flex Alert组件

来源:互联网 发布:西田亚沙子 知乎 编辑:程序博客网 时间:2024/06/01 19:49
protected function exitBtn_clickHandler(event:MouseEvent):void{
Alert.yesLabel="是";
Alert.noLabel="否";
Alert.show("直接退出不会保存录制的课程","录制课程",3,this,onCloseHandler);
}

internal function onCloseHandler(evt:CloseEvent):void{
if(evt.detail==Alert.YES){
remoteSay50.updateVideo(courseId, videoXml, userId);
setTimeout(redrectPage, 1000);
}
}
原创粉丝点击