Advertisement
ravmunken

Tiling 22 Aug 2013

Aug 22nd, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
  2. ; semicolon, such as this one, are comments.  They are not executed.
  3.  
  4. ; This script has a special filename and path because it is automatically
  5. ; launched when you run the program directly.  Also, any text file whose
  6. ; name ends in .ahk is associated with the program, which means that it
  7. ; can be launched simply by double-clicking it.  You can have as many .ahk
  8. ; files as you want, located in any folder.  You can also run more than
  9. ; one .ahk file simultaneously and each will get its own tray icon.
  10.  
  11. ; SAMPLE HOTKEYS: Below are two sample hotkeys.  The first is Win+Z and it
  12. ; launches a web site in the default browser.  The second is Control+Alt+N
  13. ; and it launches a new Notepad window (or activates an existing one).  To
  14. ; try out these hotkeys, run AutoHotkey again, which will load this file.
  15.  
  16. #z::Run www.autohotkey.com
  17.  
  18. ^!n::
  19. return
  20. NumpadLeft::
  21.     WinMove,A,, 1931, 535, 702, 345
  22. return
  23. NumpadHome::
  24.     WinMove,A,, 1031, 18, 878, 1051
  25. return
  26. NumpadEnd::
  27.     WinMove,A,, 1931, 535, 702, 534
  28. return
  29. NumpadClear::
  30.     WinMove,A,, 11, 412, 1010, 657
  31. return
  32. NumpadUp::
  33.     WinMove,A,, 11, 18, 1898, 1051
  34. return
  35. NumpadDown::
  36.     WinMove,A,, 2643, 18, 1186, 1051
  37. return 
  38. NumpadRight::
  39.         WinMove,A,,     2643, 204, 1186, 676
  40. return
  41. NumpadPgUp::
  42.         WinMove,A,,     1931, 18, 1898, 1051
  43. return
  44. NumpadPgDn::
  45.         WinMove,A,,     2643, 204, 1186, 865
  46. return
  47. NumpadIns::
  48.         WinMove,A,,     12, 26, 1280, 720
  49. return
  50. NumpadDel::
  51.         WinMove,A,,     12, 528, 1200, 540
  52. return
  53.  
  54.  
  55. ; Note: From now on whenever you run AutoHotkey directly, this script
  56. ; will be loaded.  So feel free to customize it to suit your needs.
  57.  
  58. ; Please read the QUICK-START TUTORIAL near the top of the help file.
  59. ; It explains how to perform common automation tasks such as sending
  60. ; keystrokes and mouse clicks.  It also explains more about hotkeys.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement