Hiya, so I got an ahk script that moves my RPSC3 emulated game to my TV on startup, which works great. However, when booting up "The Sly Collection" and selecting one of the three games in-game, it closes and opens up again as the selected game, but this one doesn't get affected by my script and thus doesn't move to my TV. Do anyone know a solution to this?
Here's my current script:
#NoEnv
WinWaitActive, ahk_exe rpcs3.exe
Send #+{Left} ;Send Win+Shift+Left
WinMaximize, ahk_exe rpcs3.exe
$Esc::
{
Process, Close, {{{StartupEXE}}}
}