【发布时间】:2009-11-10 13:18:45
【问题描述】:
我可以从默认显示的 Alert.Show() 消息中删除 OK 按钮吗?
谢谢
更新:
private var myAlert : Alert;
public function showAlert( message: String, title : String ) : void
{
hideAlert();
myAlert = Alert.show( message, title);
}
public function hideAlert() : void
{
if( myAlert != null && myAlert.visible ) {
myAlert.visible = false;
}
}
【问题讨论】:
标签: apache-flex