Show a "Hello World!" in message box.
MsgBox, Hello World!
Show "Hello World!" stored in variable MyString in message box.
MyString := "Hello World!"
MsgBox, %MyString%
Show a "Hello World!" in tooltip.
#Persistent
Tooltip, Hello World!
Show a &q...