2010-03-06 69 views

回答

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. 
    } 
} 

或檢查出一個自定義對話框類:http://fatal-exception.co.uk/blog/?p=69

+0

我得到這個錯誤: 1119:可能未定義的訪問屬性No通過靜態類型的引用Class。 – Waseem 2010-03-06 14:56:39

+0

http://livedocs.adobe.com/flex/3/langref/mx/controls/Alert.html,正確。對錯字抱歉。 – Pindatjuh 2010-03-06 15:39:58

0

可以使用Alert類爲。

Alert.show(...);