Add some more AHK.

master
Ethan Dalool 2019-12-10 12:46:12 -08:00
parent 10227715d7
commit f3e62e9356
2 changed files with 23 additions and 0 deletions

8
AHK/tabclick.ahk Normal file
View File

@ -0,0 +1,8 @@
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Tab::
{
Send {LButton}
}

View File

@ -15,4 +15,19 @@ If rapid_switch = 1
Send {LButton}
sleep 20
}
}
~*RButton::
If rapid_switch = 1
{
Loop
{
GetKeyState, var, RButton, P
If var = U
{
Break
}
Send {RButton}
sleep 20
}
}