Run, %comspec% /c process -a forgedalliance.exe 1110
Run, %comspec% /c process -p forgedalliance.exe high
Run, %comspec% /c process -a forgedalliance.exe 1110
Statistics: Posted by tatsu — 09 Aug 2020, 11:51
Statistics: Posted by KilroyRed — 08 Aug 2020, 18:03
Statistics: Posted by codepants — 23 Jul 2020, 20:16
I'm pretty sure there are modded lobby files that you can replace that fix this. since I game on a single screen nowadays, I'm not the expert on this.codepants wrote:
The lobby is centered across the entire window, meaning half the lobby is on the right side of my left screen and half of it is on the left side of my right screen.
codepants wrote:
My UI is on the left screen. I think I made the right screen my primary by setting "primaryRight = true," as that's the screen that zooms in at the start of the game, but the UI is still on the left and I can't seem to figure which setting changes it.
that is both possible and the expected default windows behavior.codepants wrote:
- My Windows Taskbar doesn't go away. I have it up for everything else, but if FAF is to be true "fullscreen," it should go away. ....
Is it possible to both hide the taskbar and have the window be unbordered?
correct.codepants wrote:
11111110. Correct?
No problem, my man!codepants wrote:
Thanks again for your help.
Statistics: Posted by tatsu — 23 Jul 2020, 19:53
WinHide, ahk_class Shell_TrayWnd
WinHide, Start ahk_class Button
Statistics: Posted by codepants — 23 Jul 2020, 17:24
Statistics: Posted by tatsu — 21 Jul 2020, 21:31
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#Persistent
procName := "ForgedAlliance.exe"
SetTimer, CheckProc, 2000
Return
CheckProc:
If (!ProcessExist(procName))
Return
WinGet Style, Style, % "ahk_exe " procName
If (Style & 0xC40000)
{
WinSet, Style, -0xC40000, % "ahk_exe " procName ; remove the titlebar and border(s)
WinMove, % "ahk_exe " procName , , 0, 0, 3840, 1080 ; move the window to 0,0 and resize it to fit across 2 monitors.
WinMaximize, % "ahk_exe " procName
WinRestore, % "ahk_exe " procName
Run, %comspec% /c process -a forgedalliance.exe 1110
Run, %comspec% /c process -p forgedalliance.exe high
}
Return
ProcessExist(exeName)
{
Process, Exist, %exeName%
return !!ERRORLEVEL
}
return
Statistics: Posted by tatsu — 21 Jul 2020, 01:40
codepants wrote:Some of the posts in this thread indicated peopl use borderless windowed fullscreen and then "stretch" it across two screens. What does that look like? Is it just one wide window or do they act like two separate windows? Can you have one screen zoomed out to tactical view and another zoomed in?
Statistics: Posted by codepants — 21 Jul 2020, 00:24
Statistics: Posted by tatsu — 19 Jul 2020, 17:13
WinMove, % "ahk_exe " procName , , 0, 0, 3360, 1050
Statistics: Posted by tatsu — 02 Jun 2020, 12:58
Statistics: Posted by Syn4pse — 11 May 2020, 19:26
Statistics: Posted by tatsu — 03 Apr 2019, 14:09