ksnoopy
Posts: 14
Joined: 12/21/2020 Status: offline
|
I had a similar problem, and I'll share what I did in case it helps others. I typically run at 1920x1080 but for me the game appears too small for me to see it easily. So for when I play this game, I temporarily change my desktop resolution in Windows to 1360x768. That makes the game appear properly big enough for me to see it. I changed my shortcut to match that resolution: "C:\Matrix Games\War in the Pacific Admiral's Edition\War in the Pacific Admiral Edition.exe" -wd -pxf1360 -pyf768 -deepColor -dd_sw -altFont -skipVideo -archive Also I changed the Windows task bar settings to tell Windows to hide the Windows task bar, or change the setting so it only appears on another monitor. Then I also setup a AutoHotkey script to reposition the game window to hide the title bar so the game appears to be full screen but is actually just running windowed. Here's the steps to set that up: 1) Search for Autohotkey on google and install it. Its free 2) Open notepad and paste this in: #IfWinActive ahk_exe War in the Pacific Admiral Edition.exe +^!L:: ; press Shift+Ctrl+Alt+L to reposition SetTitleMatchMode, 2 WinGetPos, X, Y, Width, Height, A WinMove,A,,-7,-32 return 3) Save the file as war.ahk 4) Double click the war.ahk and it should load up in autohotkey automatically. You'll see a little green H appear in your system tray which you can right click on to close it later and so on. 5) When you are playing the the game, press Shift+Ctrl+Alt+L and it'll run the script which will move the window into the correct position -- basically hiding the title bar at the top
< Message edited by ksnoopy -- 4/3/2021 7:16:49 PM >
|