如何在Actionscript 3中显示确认消息?
我使用Adobe Flex 3和as3进行Air应用
答案 0 :(得分:5)
Alert.show("Are you sure?", "Title",
mx.controls.Alert.YES | mx.controls.Alert.NO, this, alertEventHandler);
然后使用以下代码创建alertEventHandler
:
function alertEventHandler(event:CloseEvent):void {
if(event.detail == Alert.YES) {
// pressed yes.
}
}
或查看自定义Dialog类:http://fatal-exception.co.uk/blog/?p=69
答案 1 :(得分:0)
您可以使用Alert类。
Alert.show(...);