Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 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, 10, 10
  7.  
  8. RCtrl::ExitApp
  9.  
  10. RAlt::
  11. ATaps := 40
  12.  
  13. Loop {
  14. Loop, %ATaps% {
  15. SendEvent {Space}
  16. }
  17. SendEvent {LShift down}
  18. SendEvent {NumpadEnter down}
  19. Sleep 250
  20. SendEvent {LShift up}
  21. SendEvent {NumpadEnter up}
  22. Sleep 150
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement