Page 1 of 1

Trigger by time

Posted: Jul 4th, ’22, 20:36
by dairedo99
Hello, I need help, tell me how to run the script at a certain time? Thanks ;)

Re: Trigger by time

Posted: Jul 5th, ’22, 19:52
by Marko
Here is one way:

Code: Select all

MinutesToStart:=60
SetTimer, TimeReached, % MinutesToStart * -60000
return

TimeReached:
     MsgBox, Time Reached
Make sure to prevent the computer to go to sleep.

Re: Trigger by time

Posted: Jul 6th, ’22, 13:32
by dairedo99
I thank you for your support, I will try this method! ;)