freitasrafael
8/6/2017 - 3:34 AM

AutoHotkey Script to force games to run in fullscreen mode.

AutoHotkey Script to force games to run in fullscreen mode.

^!enter:: 
WinGetTitle, myWindow, A
IfWinExist %myWindow%
{
   WinMove, , , 0, 0, 1920, 1080 ; change this according to your resolution
   WinSet, Style, -0xC00000
   WinSet, Style, -0x40000
   WinSet, Style, -0x800000
   WinSet, Style, -0x400000
   WinSet, Top
}   
return