@ gameroommedic
by pressing the Exit-Button, AM kills the program that you stored in the executable line.
executable E:\emulators\TeknoParrot\TeknoParrotUi.exe
AM kills : TeknoParrotUi.exe
the problem with previous started emulator-UI / GUI is:
if UI/GUI closes, the games do not exit too (game still running).
>Different options (depends on emulator UI / GUI):
-
Game stops with UI/GUI automaticif UI/GUI closes, the game closes too.
depends on UI/GUI programming / coder.
-
Exit-Button in UI/GUI:
Set Exit-Button in UI/GUI + Do NOT SET Exit-Button in AM.
if you press Exit-Button: GUI closes the game + GUI close itself + you return to AM.
-
Set a after-script with taskkill / process-close / run after commands:
Use this pluginuse batch, autoit, autohotkey, whatever to make a taskkill / process-close.
close with this script your game.exe
like this:
@echo off
taskkill /F /IM "JoyToKey.exe"
taskkill /F /IM "notepad.exe"
taskkill /F /IM "myGame123.exe"
exit
-
Set a before-script, that waits for specific key press:
use autoit, autohotkey, whatever to make a taskkill / process-close.
Like here