Advertisement
Guest User

Untitled

a guest
Jun 30th, 2014
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // control alt f fullscreens the currently active window
  2. !^f::
  3. WinSet, Style, -0xC40000, A
  4. WinMove, A, , 0, 0, 1920, 1080
  5. ;WinActivate, A
  6. return
  7.  
  8. // control alt d moves the window back to a normal position
  9. !^d::
  10. WinSet, Style, +0xC40000, A
  11. WinMove, A, , 0, 0, 800, 600
  12. ;WinActivate, A
  13. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement