如何在Actionscript 3中显示确认消息?
我使用Adobe Flex 3和as3进行Air应用
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