Advertisement
Vibex

Vibex: AHK Trio Tiling

Dec 23rd, 2012
2,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ;Another obsolete tiling script. My new script (http://pastebin.com/9f2xj3tX) is far more advanced
  2.     ;and easily customizable by others.
  3.  
  4.     ; Winmove, A,,    W,X,Y,Z
  5.     ; W = Distance from the left most side of your main monitor.
  6.         ; X = Distance from the top of your main monitor.  
  7.     ; Y = The total width of the window.
  8.     ; Z = The total height of the window
  9.    
  10.    
  11.    
  12.     ^NumpadHome::
  13.             WinMove,A,,     1606, 17, 312, 1061
  14.         return
  15.     ^NumpadUp::
  16.             WinMove,A,,     2,  17, 1602, 1061
  17.         return
  18.     ^NumpadPgUp::
  19.             WinMove,A,,     2, 17, 1916, 1061
  20.         return
  21.        
  22.        
  23.    
  24.     ^NumpadLeft::
  25.             WinMove,A,,     -1918,  17, 502, 1061
  26.         return
  27.  
  28.     ^NumpadClear::
  29.             WinMove,A,,     -1414, 17, 1412, 1061
  30.         return
  31.    
  32.     ^NumpadRight::
  33.             WinMove,A,,     -1918, 17, 1916, 1061
  34.         return
  35.  
  36.    
  37.    
  38.     ^NumpadEnd::
  39.             WinMove,A,,     -1414,  17, 502, 204
  40.         return
  41.  
  42.     ^NumpadDown::
  43.             WinMove,A,,     -1414, 223, 502, 855
  44.         return
  45.    
  46.     ^NumpadPgDn::
  47.             WinMove,A,,     -910, 17, 908, 1061
  48.         return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement