Answers for "autohotkey messagebox"

2

inputbox autohotkey

Inputbox, i, The title, All the text you want, HIDE, w400, h300, x0, y0, Locale
MsgBox, you entered: %i%
;the "i" in the inputbox is a variable. The hide wil change the text you entered in stars(*), but the variable contains what you entered
;You can change the width and height, and the coördinates where the inputbox will be placed
;if locale is entered, the inputbox will be changed in the language of your country.
Posted by: Guest on April-06-2020
1

autohotkey MsgBox

MsgBox This is the 1-parameter method. Commas (,) do not need to be escaped.
MsgBox, 4, , This is the 3-parameter method. Commas (,) do not need to be escaped.
MsgBox, 4, , Do you want to continue? (Press YES or NO)
IfMsgBox No
    return
MsgBox, 4, , 4-parameter method: this MsgBox will time out in 5 seconds.  Continue?, 5
IfMsgBox Timeout
    MsgBox You didn't press YES or NO within the 5-second period.
else IfMsgBox No
    return
Posted by: Guest on November-16-2020
0

autohotkey message box

MsgBox, Text
MsgBox [, Options, Title, Text, Timeout]

;parameters inside "[]" are optional
Posted by: Guest on December-03-2020

Browse Popular Code Answers by Language