fullscreen windowed
Moderator: ickputzdirwech
- Kewlhotrod
- Fast Inserter
- Posts: 166
- Joined: Thu Apr 23, 2015 5:20 pm
- Contact:
fullscreen windowed
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
viewtopic.php?f=6&t=9242 Multiple Monitor Gameplay
viewtopic.php?f=6&t=12479 Dual screen support/use
And some more...
viewtopic.php?f=6&t=12479 Dual screen support/use
And some more...
Cool suggestion: Eatable MOUSE-pointers.
Have you used the Advanced Search today?
Need help, question? FAQ - Wiki - Forum help
I still like small signatures...
Have you used the Advanced Search today?
Need help, question? FAQ - Wiki - Forum help
I still like small signatures...
-
- Inserter
- Posts: 28
- Joined: Sun Mar 06, 2016 7:09 am
- Contact:
Re: fullscreen windowed
if you want full-screen windowed right now. you can achieve it using auto hotkey
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.
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
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.
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: fullscreen windowed
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.
See previous posts about how to make it work with multiple screens.