Hi guys, i don't understand why this not work:
Global $Test = @HOUR & ":" & @MIN
ConsoleWrite($Test)
While 1
If $Test = "14:58" Then
MsgBox(0,0,"Test")
ExitLoop
EndIf
Sleep(50)
WEnd
My object is scheduler some function at specific time if i have the script opened ( play sound or a msgbox, like example ) I have make the If...WEnd in a loop but seems not work, what is the problem?
Thanks