31
General / Re: Activating Teknoparrot in Attract Mode, for specifically Star Wars Battle Pod
« on: August 24, 2021, 01:43:38 PM »
@ 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 automatic
if 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 plugin
use batch, autoit, autohotkey, whatever to make a taskkill / process-close.
close with this script your game.exe
like this:
-Set a before-script, that waits for specific key press:
use autoit, autohotkey, whatever to make a taskkill / process-close.
Like here
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 automatic
if 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 plugin
use batch, autoit, autohotkey, whatever to make a taskkill / process-close.
close with this script your game.exe
like this:
Code: [Select]
@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