Cnells2000 Posted November 6, 2020 Share Posted November 6, 2020 when im playing my ps3 games and i press esc to return back to the front end it escapes out of both programs. is there something wrong in my script that is causing this? I have this in the Running Autohotkey script section. nothing in the other section $Esc:: { Process, Close, {{{StartupEXE}}} } vk07sc000:: Send, !{F4} Return Quote Link to comment Share on other sites More sharing options...
neil9000 Posted November 6, 2020 Share Posted November 6, 2020 Your script is sending escape and alt F4 , so i think you are you are very purposely closing two programs, first with escape, and then whatever is now focused with alt F4. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted November 6, 2020 Share Posted November 6, 2020 6 minutes ago, Cnells2000 said: when im playing my ps3 games and i press esc to return back to the front end it escapes out of both programs. is there something wrong in my script that is causing this? I have this in the Running Autohotkey script section. nothing in the other section $Esc:: { Process, Close, {{{StartupEXE}}} } vk07sc000:: Send, !{F4} Return You do not need both. The vk07 one is used for the Xbox guide button. Also, it is recommend not to use Process, Close. It messes with emulators saving on exit since it is a hard close. Recommend using the one below. $Esc:: { WinClose, ahk_exe {{{StartupEXE}}} } 2 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.