Advertisement
xdemonessx

Borderless Fullscreen Window Toggle

Sep 22nd, 2013
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. F12::
  2. WinGet, TempWindowID, ID, A
  3. If (WindowID != TempWindowID)
  4. {
  5.   WindowID:=TempWindowID
  6.   WindowState:=0
  7. }
  8. If (WindowState != 1)
  9. {
  10.   WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
  11.   WinSet, Style, ^0xC40000, ahk_id %WindowID%
  12.   WinMove, ahk_id %WindowID%, , 0, 0, A_ScreenWidth, A_ScreenHeight
  13. }
  14. Else
  15. {
  16.   WinSet, Style, ^0xC40000, ahk_id %WindowID%
  17.   WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
  18. }
  19. WindowState:=!WindowState
  20. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement