Jump to content
LaunchBox Community Forums

Pressing ESC In RCPS3 Escapes Emulator & FE


Cnells2000

Recommended Posts

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

 

Link to comment
Share on other sites

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}}}
}

 

  • Like 2
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...