I was wondering how do I go about creating scripts to have the emulator close using escape key. I already have the
$ESC::
{
WinClose, ahk_exe TeknoParrotUi.exe
}
which works fine but when running games that use fork emulators like Dolphin, Play and Rpcs3 I can't use the escape key. I tried to add all of these in the running script in teknoparrot:
$ESC::
{
WinClose, ahk_exe TeknoParrotUi.exe
}
$ESC::
{
WinClose, ahk_exe play.exe
}
$ESC::
{
WinClose, ahk_exe rpcs3.exe
}
$ESC::
{
WinClose, ahk_exe dolphin.exe
}
But get an error. Any help would be great.