Schedule daily run of shortcut?

Discussion, questions and support.
Post Reply
RadioGregg
Posts: 20
Joined: Apr 24th, ’22, 17:56

Post by RadioGregg » Feb 11th, ’25, 10:51

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!
User avatar
Tom
Posts: 883
Joined: Nov 24th, ’15, 23:39

Post by Tom » Feb 11th, ’25, 11:40

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
Post Reply