Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;This AutoHotKey script sends a left mouse click when you double-tap the right shift key. Useful for times when you don't want to have to move your hands to the mouse.
- RShift::
- if (A_ThisHotkey = A_PriorHotkey && A_TimeSincePriorHotkey < 500)
- {
- Sleep 150
- Click
- }
- Return
Advertisement