Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
7,862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. SetKeyDelay , 180, 180 ; first is delay between keypresses, and second is press duration
  7.  
  8. ; we are using ControlSend here because Send and SendInput is not affected by SetKeyDelay.
  9. $g::
  10. ControlSend, , g, A
  11. ControlSend, , z, A
  12. ControlSend, , x, A
  13. ControlSend, , c, A
  14. ControlSend, , v, A
  15. ControlSend, , b, A
  16. ControlSend, , n, A
  17. ControlSend, , m, A
  18. ControlSend, , {space}, A
  19. ControlSend, , f, A
  20. ControlSend, , d, A
  21. ControlSend, , 1, A
  22.  
  23.  
  24.  
  25.  
  26. Suspend
  27. return
  28.  
  29. TAB::Suspend, Off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement