Page 1 of 1

Schedule daily run of shortcut?

Posted: Feb 11th, ’25, 10:51
by RadioGregg
I have a simple shortcut triggered by CTRL + Shift + NumpadSub - is there any way to automate the use of this shortcut every day at 4 pm eastern?

Many thanks!

Re: Schedule daily run of shortcut?

Posted: Feb 11th, ’25, 11:40
by Tom
You need a script, Type: Command
For example:

Code: Select all

settimer, Action, 60000 ;1 minute
return

Action:
if (A_Hour=16) and (A_Min=0)
{

	SoundBeep ;replace with your code
	
}
return