Advertisement
Guest User

Joe Elliott Script

a guest
Sep 8th, 2013
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. This is an AutoHokey script for working on Joe Elliott HITs. Usage: Function 'a' selects all text in current box, copies it, tabs to the next box, scrolls to center the next picture. 'g' is the same, except it pastes instead of copies. You may need to adjust the amount of wheel scrolls depending on screen resolution etc. This only works with Firefox, to my knowledge (it doesn't work well with Chrome).
  2. ----
  3.  
  4. a::
  5. Send ^a
  6. Send ^c
  7. Send {Tab}
  8. Send {WheelDown}
  9. Send {WheelDown}
  10. Send {WheelDown}
  11. Send {WheelDown}
  12. return
  13.  
  14. g::
  15. Send ^v
  16. Send {Tab}
  17. Send {WheelDown}
  18. Send {WheelDown}
  19. Send {WheelDown}
  20. Send {WheelDown}
  21. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement