Advertisement
Guest User

Test

a guest
Aug 10th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;AHK Symbols
  2. ;#  Win (Windows logo key)
  3. ;!  Alt
  4. ;^  Control
  5. ;+  Shift
  6. ;&  An ampersand may be used between any two keys or mouse buttons to combine them into a custom hotkey.
  7.  
  8. ;Command F2, Mouse to center.
  9. #Persistent
  10.  
  11. F2::
  12.  
  13. Loop, 34 ; Adjust this for number of pages.
  14.  
  15. {
  16.  
  17. CoordMode, Mouse, Screen
  18. MouseMove, (A_ScreenWidth // 2), (A_ScreenHeight // 2)
  19.  
  20. ;Right Click
  21. Click, right  ;
  22.  
  23. ;Move Mouse to Save As
  24. MouseMove, 140, 180, 0, R ; The 140 and 180 are the X and Y coordinates your mouse needs to move to "Save Image As" and will probably need to be adjusted.
  25. Sleep, 20
  26.  
  27. ;Left Click
  28. Click
  29. Sleep, 2000
  30.  
  31. ;Enter
  32. Send, {Enter}
  33. Sleep, 2000
  34.  
  35. ;Page Down
  36. Send, {PgDn}
  37.  
  38. }
  39.  
  40. F3::exitapp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement