DarkMsgBox
Apply dark theme to your built-in MsgBox and InputBox.
Install / Use
/learn @nperovic/DarkMsgBoxREADME
DarkMsgBox
[!NOTE]
If you are using ahk v2-alpha.13+, please click here. The alpha version supports modules.
How To Use
Include Dark_MsgBox.ahk
Learn more about #Include: AHK Official Document
#Requires AutoHotkey v2
#Include <Dark_MsgBox>
Basic Uses
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
Add Icon
It has to be
MsgBox.Callfor setting icons.
MsgBox.Call("123456", "Title", "CTC", "copilot.ico")
For further details, please refer to the official document: CLICK HERE
