3 changed files with 33 additions and 2 deletions
@ -0,0 +1,21 @@ |
|||||
|
; Script can be directly run by or compiled into an .exe by the open-source software AutoHotkey |
||||
|
; https://www.autohotkey.com |
||||
|
|
||||
|
; |
||||
|
; Front Matter |
||||
|
; |
||||
|
|
||||
|
; Include relevant libraries |
||||
|
#Include ../lib/Prelude.ahk |
||||
|
|
||||
|
; |
||||
|
; Hotkeys |
||||
|
; |
||||
|
|
||||
|
*RButton:: |
||||
|
Send {RButton up} |
||||
|
Sleep 50 |
||||
|
While GetKeyState("RButton","P") { |
||||
|
Send {LButton} |
||||
|
} |
||||
|
return |
Loading…
Reference in new issue