autohotkey message box input code example

Example 1: 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.

Example 2: autohotkey message box

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

;parameters inside "[]" are optional

Tags:

Misc Example