AGEE1981 Posted April 14, 2017 Share Posted April 14, 2017 (edited) Hey peeps I had been having a little issue with the PS2 Emulator PCSX2, to keep it short you have maybe noticed that it seems to lose focus when launched through bigbox and it was quite frankly driving me nuts when I would start smashing the x button on my ps4 controller to get through opening scenes only to find that big box had then launched several instances of PCSX2. After a bit of fiddling I decided to tackle this issue with an Autohotkeyscript which has completely fixed the issue for me so I thought I would share it with you guys. Place this in the autohotscript tab for PCSX2 and you will no longer have this issue, with the added bonus of your PS4/Xbox Guide buttons for your controller exiting out of the emulator and re focussing either launchbox or bigbox. [SCRIPT START] Sleep 2000 ;Attempt to Focus PCSX2 window (Ive noticed that PCSX2 seems to lose focus) IfWinExist, PCSX2 WinActivate ; use the window found above ;This closes the active window when the ps4 button is pressed provided it is not ;the launchbox/bigbox window. ExitButton = vk07sc000 Loop { If (GetKeyState(ExitButton)) { WinGetActiveTitle, WindowTitle If (WindowTitle != "Launchbox Big Box"){ WinKill, %WindowTitle% IfWinExist Launchbox Big Box WinActivate else IfWinExist Launchbox Premium Winactivate } } } [SCRIPT END] Hope this helps some of you guys/gals out Have fun Edited April 14, 2017 by AGEE1981 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.