here's the download link:
!So now here's the tricky part, it might be confusing but you'll get use to it once you understand it.
sample script for an F1 macro.
$f1::
Loop
{
if not GetKeyState("f1", "P")
break
Send {f1}
Click
sleep 0
}
if you want to ADD another key let's say for example letter Q, this will be script
$f1::
Loop
{
if not GetKeyState("f1", "P")
break
Send {f1}
Click
sleep 0
}
$Q::
Loop
{
if not GetKeyState("Q", "P")
break
Send {Q}
Click
sleep 0
}
So it's just simply copy pasting and replacing all F1 in the script to Q.
you can try experimenting different formulas. I will post the TOGGLE script(toggle ON/OFF autohotkey without right clicking H in the lower right corner near the clock and click Pause) once i remember it since i forgot the script
Here's the script for toggle on/off by pressing alt+X/alt+X
}
Suspend, on
~!x::Suspend
return
feel free to ask questions or just message me






