Avatar of HelpMe01
HelpMe01

asked on 

Autohotkey keyboard macro help

My google drive is full. There is no way to clear the entire drive. I would like to automate this.
1. I would like to select all
2. press delete
3. wait 3 seconds
4. loop for a 1000 times
It doesn't seem to loop. What am I doing wrong ?

^j::
JCloop::
loop, 10000
{
send, ^a
sleep, 5000
send, {del}
}
return
* Windows MacroScripting LanguagesAutoHotkey

Avatar of undefined
Last Comment
Joe Winograd

8/22/2022 - Mon