Author: gwarble Last Modified: 20100801
Create multiple simultaneous auto-positioning tray area notifications very simply. Use Notify() in any number of scripts and they will stack accordingly. Notifications are customizable in color and style, duration, and can call subroutines when clicked or timeout. Display information quickly and easily for debugging or end-user interfaces.
Notify(Title,Message,Duration,Options,Image)
Title | Title text of notification. Title and Message can contain `n to show multiple lines.
|
Message | Message text of notification. |
Duration | [15] Number of seconds to show notification.
|
Options | Options string to set the style of this and following notifications. *** "Wait" to wait for a notification |
Image | Number of icon from shell32.dll to use for image. *** Gui Number to "Wait" for |
Gui Number used ***, 0 if failed (too many open).
I am sorry to say this against what the author says. Thi library is not stdlib conform to me, because it uses labels. Labels are uniqhe through the whole script, like globals.
For update's details and remarks related to the functions, please see the AutoHotkey Forum: http://www.autohotkey.com/forum/viewtopic.php?t=48668
nonexistent
; #Include Notify.ahk #NoEnv SendMode Input SetWorkingDir %A_ScriptDir% Title= Hello Message= World Duration=0 Options:="GC=bbffbb TC=White MC=White" Image=14 Notify(Title,Message,Duration,Options,Image)