Difference between revisions of "Lua:messageDialog"

From Cheat Engine
Jump to navigation Jump to search
Line 26: Line 26:
  
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
  
  

Revision as of 21:43, 19 March 2017

function messageDialog(Text, Type, Button, ...)

Displays a messagebox of a specific type with a variable amount of buttons at the center of the screen with the provided text.

Returns: ButtonResult

Function Parameters

Parameter Type Description
Text String The message to show
Type DialogType The type of the messagebox.
Button ButtonType The kind of button. There can be multiple buttons provided


See also



==EXAMPLES== by CHEATS GAMES

messageDialog("NÃO NOS RESPONSABILIZAMOS POR BANIMENTOS\nCONTINUAR?", mtInformation, mbYes,mbNo)

MessageDialog('Do you really want to continue?', mtConfirmation, mbYes, mbNo, mbCancel, 0)

messageDialog("NÃO NOS RESPONSABILIZAMOS POR BANIMENTOS\nCONTINUAR?", mtError, mbYes,mbNo)

messageDialog("POR FAVOR SELECIONE O PROCESSO CORRETO", mtError, mbOK)

messageDialog("BEM VINDO!\nBY RAFAEL LIMA!", mtInformation, mbYes,mbOK)

messageDialog(mtError,'do i have?','Title',mbOK)

messageDialog('Custom dialog',mtCustom,mbYes,mbOK)

messageDialog(None,'do i have?','Title')