是否有可能根据警告框创建操作(如是或否选项)? 提前谢谢......
答案 0 :(得分:0)
您是否只是尝试根据用户决定启动某项功能?如果是这样,则有一个closeHandler作为Alert.show构造函数的一部分,您可以告诉它在警报框关闭时要运行的函数。
Alert.show("My Message", "Alert Box Title", (Alert.YES | Alert.NO), null, alertCloseHandler);
private function alertCloseHandler(event:CloseEvent){
if(event.detail == Alert.YES){
//code if they clicked yes
}
}