Windowed mode (applications, games) - removing title..

Status
Not open for further replies.

dsr07mm

Distinguished
When I try to run game in windowed mode for example, on my primary monitor where I dont have taskbar or anything its basically fullscreen mode (in native resolution).

Now dont ask me why, simply I need to run games in windowed mode because ShadowPlay doesnt pick up new unreleased games since I'm doing previews etc.

I can manage side and bottom 1mm bars in that case, but at the top I have like 7-8mm wide bar with game/app name and I'm loosing time and lowering quality on video once when I need to resize video and spread picture to remove that bar in Adobe Premiere.

Is there a way to remove that bar at the top which is usually showing game/app name ?

Example - (ITS NOT MY VIDEO) - https://www.youtube.com/watch?v=kzdKL4yaTFI switch to 3:50 for example and you see up there like almost 1cm of title (H1Z1), I want to remove that and to have bars like on sides or bottom.
 
Solution

jasonkaler

Distinguished


Try http://www.autohotkey.com/

;-Caption
LWIN & LButton::
WinSet, Style, -0xC00000, A
return
;

;+Caption
LWIN & RButton::
WinSet, Style, +0xC00000, A
return
;

Save the file with a extension .ahk and run it like any application.

Usage:

to remove the title bar LWindowButton + Left click

to restore the title bar LWindowButton + Right click
 
Solution
Status
Not open for further replies.