Jump to content
LaunchBox Community Forums

PCSX2 Fullscreen 2nd Display


BrainyCabde

Recommended Posts

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?

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 year later...

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 by kdub87
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...