Advertisement
Guest User

Embiggen Window

a guest
Jan 29th, 2017
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #UseHook ; Necessary for hotkey function in some games
  2. ^+`:: ; Sets hotkeys to ctrl+shift+tilde (see autohotkey documents for non-alphanumeric key symbols)
  3. WinSet, Style, -0xC00000, a ; Strips titlebar and borders of active window
  4. WinMove, a, , 0, 0, 1920, 1080 ; Moves window to 0,0 (center screen) then resizes it (change 1280 and 1024 to your own screen resolution)
  5. ;ExitApp : Remove semicolon in front of exitapp to make this program close automatically after it does its thing
  6. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement