Jump to content
LaunchBox Community Forums

RPCS3 big box dual screen script issues


klwolf2000

Recommended Posts

So I have a dual screen setup with my TV as the 2nd display. In launchbox I have a working script to auto move the RPCS3 PS3 game to my 2nd screen and maximize the picture. First I would love to instead of maximize picture to make it go into full screen which I believe is Alt + Enter in RPCS3. I also have it set to press start + select to close and it works perfectly in launchbox. In Bigbox however, even if I set the close current content to start + select it won't work and the script to move the PS3 game to the 2nd window doesn't work. I didn't see anywhere in big box to setup scripts and I'm guessing it is not using the launchbox scripts. If anyone has any answers to these questions you will be my hero!

Link to comment
Share on other sites

14 hours ago, klwolf2000 said:

I set the close current content to start + select it won't work

In BigBox, when you set Close the Active Window to Button 7 + Button 1 (or whatever #'s come up for your controller), they need to be pressed in that order.  You can add another button combo for that action to help with 'tired fingers'.

bb.thumb.png.58ff3491e75581bfeadbdb70e6303ef9.png

 

14 hours ago, klwolf2000 said:

I would love to instead of maximize picture to make it go into full screen which I believe is Alt + Enter in RPCS3.

Have you tried telling it to start Full Screen in the emulator itself?  Although if you're having to move it from the monitors it loads up on, I suppose this doesn't help. 😊

image.png.5ebdfcf4a5fdf4948482eff91ba650b5.png

 

 

14 hours ago, klwolf2000 said:

the script to move the PS3 game to the 2nd window doesn't work.

If this script is in your Running Script section of your RPCS3 emulator you setup in LaunchBox, it will work in BigBox as well.  You may need to make some adjustments at the top of your script to allow time for RPCS3 to fully load before moving and resizing.  Can you share what your script looks like?

Link to comment
Share on other sites

3 hours ago, JoeViking245 said:

In BigBox, when you set Close the Active Window to Button 7 + Button 1 (or whatever #'s come up for your controller), they need to be pressed in that order.  You can add another button combo for that action to help with 'tired fingers'.

bb.thumb.png.58ff3491e75581bfeadbdb70e6303ef9.png

 

Have you tried telling it to start Full Screen in the emulator itself?  Although if you're having to move it from the monitors it loads up on, I suppose this doesn't help. 😊

image.png.5ebdfcf4a5fdf4948482eff91ba650b5.png

 

 

If this script is in your Running Script section of your RPCS3 emulator you setup in LaunchBox, it will work in BigBox as well.  You may need to make some adjustments at the top of your script to allow time for RPCS3 to fully load before moving and resizing.  Can you share what your script looks like?

You were right about pressing the buttons in order that fixed my issue there.

I tried the start game in fullscreen but it won't move it to the 2nd monitor. It will only move it if I have it in windowed mode. I also have the Exit RCPS3 when process finishes checked. If I could find a way to replace WinMaximize to make it full screen that problem would be solved.

This is the script I put together. I finally found out that I needed to change the sleep time to 6 seconds to give it enough time to load in Bigbox because for some reason Bigbox is much slower at launching games.

#NoEnv
 Sleep, 6000    ;wait 6 seconds
 Send #+{Right}  ;Send Win+Shift+Right
 Sleep, 1000    ;wait 1
 WinActive("A") ;grab the currently active window
 WinMaximize    ;maximize the currently active window
 Return
 

$ESC::
 {    
    SetTitleMatchMode, 2
    WinWaitActive, RPCS3
    Send !{f4}                
}

Edited by klwolf2000
Link to comment
Share on other sites

1 hour ago, klwolf2000 said:

I needed to change the sleep time to 6 seconds

Let the script figure out how long to wait. ;) 

WinWaitActive, ahk_exe rpcs3.exe
Send #+{Right}  ;Send Win+Shift+Right
WinMaximize, ahk_exe rpcs3.exe

 

1 hour ago, klwolf2000 said:

You were right about pressing the buttons in order that fixed my issue there.

Then you shouldn't need the Esc routine.  (removed above)

Link to comment
Share on other sites

1 hour ago, JoeViking245 said:

Let the script figure out how long to wait. ;) 

WinWaitActive, ahk_exe rpcs3.exe
Send #+{Right}  ;Send Win+Shift+Right
WinMaximize, ahk_exe rpcs3.exe

 

Then you shouldn't need the Esc routine.  (removed above)

Awesome I didnt know I could do that! Can I replace WinMaximize with Send Alt+Enter to make the window fullscreen? I'm not sure what the proper syntax is.

Edited by klwolf2000
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...