Advertisement
Guest User

delete

a guest
Apr 20th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 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. ^j::
  7.  
  8. Loop, 10000
  9. {
  10. send, {Up}
  11. send, ^a
  12. send, {BS}
  13. send, {Enter}
  14. send, {Enter}
  15. sleep, 150
  16. }
  17. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement