BrainyCabde Posted May 12, 2020 Share Posted May 12, 2020 I'm having trouble getting PCSX2 to go fullscreen on my 4k TV(2nd Display). My primary display is a 1440p monitor. I'm currently using this autohotkey script #NoEnv Sleep, 3000 ;wait 3 seconds Send #+{Left} ;Send Win+Shift+Left Return ; This section closes PCSX2 when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} It gets PCSX2 to launch on the 2nd display, but it's not filling the screen. It only displays in the top left of my TV and I can still see the taskbar on the bottom. Any ideas how to fix this? Quote Link to comment Share on other sites More sharing options...
BrainyCabde Posted May 12, 2020 Author Share Posted May 12, 2020 Bump Quote Link to comment Share on other sites More sharing options...
Lennygundam14 Posted May 21, 2020 Share Posted May 21, 2020 Im having a similar issue, i got the script running, but when it goes fullscreen on the second screen i doesnt remove the windows toolbar at the second screen... Quote Link to comment Share on other sites More sharing options...
kdub87 Posted October 1, 2021 Share Posted October 1, 2021 (edited) Solved. MouseMove, 0, 1080 #NoEnv Sleep, 1000 ;wait 1 seconds feel free to change this number depending on your load times Send #+{Left} ;Send Win+Shift+Left Sleep, 1000 ;wait 1 second feel free to change this number depending on your load times WinActive("A") ;grab the currently active window which should be your game WinMaximize ;maximize the currently active window Return ; This section closes PCSX2 when pressing Escape $Esc:: { Process, Close, {{{StartupEXE}}} } Edited October 1, 2021 by kdub87 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.