Advertisement
Guest User

Joe Elliott

a guest
May 20th, 2014
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3.  
  4. a:: ;copies current textbox, then goes to next box
  5. Send ^a
  6. Send ^c
  7. Send {Tab}
  8. return
  9.  
  10. g:: ;pastes from previous textbox, then goes to next box
  11. Send ^v
  12. Send {Tab}
  13. return
  14.  
  15. q:: ;fills every box with "s", just click in the first box first
  16. Loop ,25 {
  17. Send s
  18. Send {Tab}
  19. }
  20. return
  21.  
  22. F1:: ;to scroll to the pictures
  23. Send {Click}
  24. Sleep, 100
  25. Send {WheelDown 4}
  26. Sleep, 100
  27. MouseMove, 50, 0, 0, R
  28. Sleep, 50
  29. Send {Click}
  30. Sleep, 50
  31. Send {PgDn 2}
  32. Send {WheelDown 2}
  33. return
  34.  
  35. F2:: ;suspends
  36. Suspend, Toggle
  37. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement