#Is there anyone that can help me combine 3 AutoHotkeys into one that functions?
4 messages · Page 1 of 1 (latest)
You should provide more details
I want to combine these 3 autohotkeys into one that functions together, preferably with one keybind
1
"#MaxThreadsperHotkey 2
~`::
Previouskey:= !PreviousKey
loop
{
if PreviousKey
{
sleep, 500
send, {space}
}
else
break
}
return "
2
#Persistent
#MaxThreadsPerHotkey 2
toggle := False
` UP::
toggle := !toggle
Loop {
If (!toggle) {
send,{` UP}
break
}
send,{a DOWN}
sleep 10
}
Return
3
#Persistent
#MaxThreadsPerHotkey 2
toggle := False
` UP::
toggle := !toggle
Loop {
If (!toggle) {
send,{` UP}
break
}
send,{s DOWN}
sleep 10
}
Return
Loop {
If (!toggle) {
send,{ UP}
break
}
send,{a DOWN}
sleep 10
}
Return