如何在Actionscript 3中显示确认消息?

Was*_*eem 4 apache-flex air actionscript-3

如何在Actionscript 3中显示确认消息?

我使用Adobe Flex 3和as3进行Air应用

Pin*_*juh 5

Alert.show("Are you sure?", "Title",
    mx.controls.Alert.YES | mx.controls.Alert.NO, this, alertEventHandler);
Run Code Online (Sandbox Code Playgroud)

然后alertEventHandler使用以下代码创建一个:

function alertEventHandler(event:CloseEvent):void {
    if(event.detail == Alert.YES) {
        // pressed yes.
    }
}
Run Code Online (Sandbox Code Playgroud)

或者查看自定义Dialog类:http://fatal-exception.co.uk/blog/?p = 69