Advertisement
The_Whiskey

ShiftToggle.AHK

Feb 25th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. f12::Suspend
  2. Return
  3.  
  4. `::
  5. KeyDown := !KeyDown
  6. If KeyDown
  7. SendInput {LShift down}
  8. Else
  9. SendInput {LShift up}
  10. Return
  11.  
  12. ~::
  13. KeyDown := !KeyDown
  14. If KeyDown
  15. SendInput {LShift down}
  16. Else
  17. SendInput {LShift up}
  18. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement