Difference between revisions of "ButtonType"

From Cheat Engine
Jump to navigation Jump to search
m
Line 2: Line 2:
 
The following button types are defined in defines.lua
 
The following button types are defined in defines.lua
  
*mbYes (0): A button with the locale text for 'Yes'. Returns mrYes
+
===Button Types===
*mbNo (1): A button with the locale text for 'No'
+
{|width="85%" cellpadding="5" cellspacing="0" border="0"
*mbOK (2): A button with the locale text for 'Ok'
+
!align="left"|Constant
*mbCancel (3): A button with the locale text for 'Cancel'
+
!align="left"|Value
*mbAbort (4): A button with the locale text for 'Abort'
+
!align="left"|Description
*mbRetry (5): A button with the locale text for 'Retry'
+
|-
*mbIgnore (6): A button with the locale text for 'Ignore'
+
|mbYes
*mbAll (7): A button with the locale text for 'All'
+
|0
*mbNoToAll (8): A button with the locale text for 'No to all'
+
|Yes
*mbYesToAll (9): A button with the locale text for 'Yes to all'
+
|-
*mbHelp (10): A button with the locale text for 'Help'
+
|mbNo
*mbClose (11): A button with the locale text for 'Close'
+
|1
 +
|No
 +
|-
 +
|mbOK
 +
|2
 +
|OK
 +
|-
 +
|mbCancel
 +
|3
 +
|Cancel
 +
|-
 +
|mbAbort
 +
|4
 +
|Abort
 +
|-
 +
|mbRetry
 +
|5
 +
|Retry
 +
|-
 +
|mbIgnore
 +
|6
 +
|Ignore
 +
|-
 +
|mbAll
 +
|7
 +
|All
 +
|-
 +
|mbNoToAll
 +
|8
 +
|No to All
 +
|-
 +
|mbYesToAll
 +
|9
 +
|Yes to All
 +
|-
 +
|mbHelp
 +
|10
 +
|Help
 +
|-
 +
|mbClose
 +
|11
 +
|Close
 +
|}
  
 
== See also ==
 
== See also ==

Revision as of 23:29, 10 July 2025

The following button types are defined in defines.lua

Button Types

Constant Value Description
mbYes 0 Yes
mbNo 1 No
mbOK 2 OK
mbCancel 3 Cancel
mbAbort 4 Abort
mbRetry 5 Retry
mbIgnore 6 Ignore
mbAll 7 All
mbNoToAll 8 No to All
mbYesToAll 9 Yes to All
mbHelp 10 Help
mbClose 11 Close

See also