Hi, Can i remove the OK Button from Alert.Show() message which displays by default?
Thanks
Update:
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;
}
}