Page 1 of 1

fullscreen windowed

Posted: Fri Mar 11, 2016 4:29 pm
by Kewlhotrod
as title suggested, it would be nice thing to have as much as I play in windowed it would be nice to have fullscreen capability /w multi monitor support ;) ;)

Re: fullscreen windowed

Posted: Fri Mar 11, 2016 10:44 pm
by ssilk
viewtopic.php?f=6&t=9242 Multiple Monitor Gameplay
viewtopic.php?f=6&t=12479 Dual screen support/use

And some more...

Re: fullscreen windowed

Posted: Mon Mar 14, 2016 3:33 am
by joe_da_cro
if you want full-screen windowed right now. you can achieve it using auto hotkey

Code: Select all

~f1::
ifwinactive Factorio
{
WinSet, Style, -0xC00000,a ; remove the titlebar and border(s) 
WinMove, a, , 0, 0, 1920, 1080 ; move the window to 0,0
}
return
when you press f1 the current active window will go full screen windowed.

basically the script removes the frame and title bar and the second line sizes the window to a 1080p monitor. if your monitor resolution is different you can change it. also when the move takes place the "0,0" represents the main monitors top left corner.

Re: fullscreen windowed

Posted: Mon Mar 14, 2016 10:21 am
by bobingabout
Basically... fullscreen mode already Is fullscreen windowed, but it's programmed in such a way that it's designed for a single screen.

See previous posts about how to make it work with multiple screens.