Advertisement
rozman50

HotKey code

Sep 10th, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ; 33% Left
  2. !^Left::
  3. ResizeWin(-6, 0, 1160, 1407)
  4. return
  5.  
  6. ; 33% Middle
  7. !^Down::
  8. ResizeWin(1142, 0, 1160, 1407)
  9. return
  10.  
  11. ; 33% Right
  12. !^Right::
  13. ResizeWin(2290, 0, 1158, 1407)
  14. return
  15.  
  16.  
  17. ; 66% Left
  18. !^+Left::
  19. ResizeWin(-6, 0, 2308, 1407)
  20. return
  21.  
  22. ; 66% Right
  23. !^+Right::
  24. ResizeWin(1142, 0, 2305, 1407)
  25. return
  26.  
  27. ; 66% Center
  28. !^+Down::
  29. ResizeWin(567, 0, 2305, 1407)
  30. return
  31.  
  32. ; 50% Left
  33. ^#Left::
  34. ResizeWin(0, 0, 1729, 1407)
  35. return
  36.  
  37. ; 50% Right
  38. ^#Right::
  39. ResizeWin(1717, 0, 1729, 1407)
  40. return
  41.  
  42. ; ResizeWin( x Pos, y Pos, width, height )
  43. ResizeWin( x, y, w, h ) {
  44. winMove, A,, x, y, w, h
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement