Advertisement
Guest User

1440P example Script

a guest
Jul 1st, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; the ";" lets you comment, comments are used to explain your code,
  2. ;and may help you when you edit the script at a later date.
  3. ;Comments are ignored by AHK.
  4.  
  5. ;Window 1
  6. ^Numpad1:: ;-----^Numpad1 means Ctrl+Numpad1, remember to keep numlock on
  7.     WinMove,A,, 10, 27, 1415, 1403
  8. ;-----WinMove moves&resizes the browser, A means the current window, the other comma is an unneeded parameter
  9. ;-----10, 27, 1415, 1403 means: distance from left edge, distance from top edge, width of window, height of window
  10. ;-----read here http://www.autohotkey.com/docs/commands/WinMove.htm
  11. return ;-----this ends this portion of the script.
  12.  
  13. ;Window 2
  14. ^Numpad2::
  15.     WinMove,A,, 1435, 27, 1115, 676
  16. return
  17.  
  18. ;Window 3
  19. ^Numpad3::
  20.     WinMove,A,, 1435, 854, 495, 576
  21. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement