Skip to content

nperovic/DarkMsgBox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

DarkMsgBox

Note

If you are using ahk v2-alpha.13+, please click here. The alpha version supports modules.

DarkMode_MsgBox

DarkMode_InputBox

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.Call for setting icons.

MsgBox.Call("123456", "Title", "CTC", "copilot.ico")

For further details, please refer to the official document: CLICK HERE