by Killf4ce » Wed Nov 21, 2012 2:14 pm
to get this working with non supported titles that don't work by disabling desktop composition all u need to do is run in windowed mode then install autohotkey and run this script:
` & LButton::
Toggle_Window()
Return
Toggle_Window() {
MouseGetPos,,, W
WinGet, S, Style, % "ahk_id " W
If (S & +0xC00000)
{
WinSet, Style, -0xC00000, % "ahk_id " W
WinMove, % "ahk_id " W,, 0, 0, % A_ScreenWidth, % A_ScreenHeight
Return
}
WinSet, Style, +0xC00000, % "ahk_id " W
WinMove, % "ahk_id " W,,,,640, 480
}
then once anything u want (try it on any window) is running, hit ` along with ur left mouse button and anything u click on goes to full screen... same again to revert it. I got Stalker working with it so guess it might work for others...