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!
Schedule daily run of shortcut?
-
- Posts: 20
- Joined: Apr 24th, ’22, 17:56
You need a script, Type: Command
For example:
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