It does not work for me. "_Notify_Size BEFORE _Notify_Locate"
Everything remains the same.
And the first element disappeared!
#include "Notify_Test.au3"
HotKeySet("{ESC}", "_Exit")
_Notify_Size(200, 360, 400)
;~ _Notify_Size($iHeight = 40, $iMinWidth = 160, $iMaxWidth = 320)
; Set notification location
_Notify_Locate(0, 2)
; Set Show time to 250 ms - note fast entry
_Notify_Set(1, 0xAA0000, Default, "", True, 350)
Global $aNotCID[5]
$aNotCID[0] = _Notify_Show(0, "Title 1 asdf", "Message 1 asdf asd fasd dfg hdg dfghd gdgfdh dfgh dfg hdf")
$aNotCID[1] = _Notify_Show(0, "", "Message 2" & @CRLF & "more Message 2")
$aNotCID[2] = _Notify_Show(0, "Title 3", "Message 3")
$aNotCID[3] = _Notify_Show(0, "", "Message 4" & @CRLF & "more Message 4")
$aNotCID[4] = _Notify_Show(0, "Test", "Auto-retract", 1)
While 1
Sleep(100)
WEnd
Func _Exit()
Exit
EndFunc