lanux128

Kf-Windowed

Dec 29th, 2010
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Killing Floor noborder windowed option
  2. #Persistent
  3. #SingleInstance force
  4. #NoEnv
  5. SetTitleMatchMode,2
  6. DetectHiddenWindows,On
  7.  
  8. Loop
  9. {
  10.     WinWait, Killing Floor ahk_class KillingFloorUnrealWWindowsViewportWindow
  11.     IfWinExist
  12.     {
  13.         WinSet, Style, -0xC00000 ; remove the titlebar and border(s)
  14.         ;move the window to 0,0 and resize it to the width and height of the primary monitor
  15.         WinMove, , , 0, 0, %A_ScreenWidth%, %A_ScreenHeight%
  16.     }  
  17.     Sleep 5000 ; 5 seconds
  18. }
  19. Return
Advertisement
Add Comment
Please, Sign In to add comment