Note
If you are using ahk v2-alpha.13+, please click here. The alpha version supports modules.
Learn more about #Include
: AHK Official Document
#Requires AutoHotkey v2
#Include <Dark_MsgBox>
IB := InputBox("Please enter a phone number.", "Phone Number", "w300 h200")
if (IB.Result = "Cancel")
MsgBox "You entered '" IB.Value "' but then cancelled.",, 0x1
else
MsgBox "You entered '" IB.Value "'.", , 0x1
It has to be
MsgBox.Call
for setting icons.
MsgBox.Call("123456", "Title", "CTC", "copilot.ico")
For further details, please refer to the official document: CLICK HERE