Hello:
For the bug:
To show notfy
Code:
options:= "AC=MenuNotify IW=48 IH=-1 GC=FFFFFF"
Last_Notify_ID:= Notify( title , A_Hour . ":" . A_min . " (" . A_DDDD . " " . A_DD . "/" . A_MMMM . "/" . A_YYYY . ")`n" ,0, options , file)
(sometimes file="")
To close notify (sometimes):
Code:
Notify("","",-3,"Wait",Last_Notify_ID)
Sugestions for the code:
An option PX PY to force XY position. I have modified:
Code:
SysGet, Workspace, MonitorWorkArea
If PX =
NewX := WorkSpaceRight-GW-5
else
NewX := PX
If PY =
{
If (OtherY)
NewY := OtherY-GH-5
Else
NewY := WorkspaceBottom-GH-5
If NewY < % WorkspaceTop
NewY := WorkspaceBottom-GH-5
}
else NewY := PY
Gui, %GN2%:-Caption +ToolWindow +AlwaysOnTop -Border +E0x20
Disable animate ST dont works on close notify (missing "if ST")
Code:
Gui, % Image + GL - GF + 1 ":Destroy"
If ST
DllCall("AnimateWindow","UInt",NotifyGuiID,"Int",ST,"UInt", "0x00050001")
Gui, %Image%:Destroy
Thanks for this great code!!!