lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> How can one display an "error" dialog box with an OK button with an
> icon that indicates an error?

  How about:

dlg = iup.messagedlg{
  dialogtype = "ERROR",
  title = "Error!",
  value = "This is an error message"
  }

dlg:popup()
dlg:destroy()

Best,
Scuri