Ok, I've tried to do it discreetly - I've set up my Mala Frontend with the usuals Mame, Genesis, Snes, Nes, Master System, Atari 2600 etc.
And after about two weeks of searching (most searches leading me back to this forum), I have to admit I'm completely stuck.
I can not get the hang of AHK scripts. If I may I'll tell you my two main problems:
1) Closing emulators such as Project Tempest which don't accept the Escape key. This is the script I use:
#IfWinActive ahk_class PT
[::Send !{F4}
and for a bit of a jolly I tried this:
#IfWinActive ahk_class PT
Esc::Send !{F4}
I save the text document as an Ahk file, I use the compiler to make it an exe and load it into presets. It basically doesn't work, pre-command just sits there for ages. Anything here I'm doing wrong or do you really need to wait for 30 minutes everytime I want to play a Jaguar game.
2) Daemon Tools is getting me down. I'm trying to set up the Saturn and Dreamcast, so far I've tried two scripts (both found on this site):
blockinput on
rom := %0%
run, cmd.exe
winwait, C:\WINDOWS\system32\cmd.exe
send cd \Program Files\DaemonTool\{enter}
send DtPro.exe -mount 0, "O:\Emulators\RomFiles\Sega Saturn\%rom%"{enter}
winwait, DAEMON
winwaitclose, DAEMON
run, O:\Emulators\Programs\SSF\SSF.exe
winkill, C:\WINDOWS\system32\cmd.exe
blockinput off
winwaitclose, SSF
or
Run, C:\Program Files\DaemonTool\DTPro.exe -unmount 0
Sleep 2000
Run, C:\Program Files\DaemonTool\DTPro.exe -mount 0, "%1%"
Sleep 2000
SetWorkingDir, O:\Emulators\Programs\SSF
Runwait, SSF.exe
Again both I'm pretty much having no luck with, they open Demon Tools - but it seems to then give up as far as mounting anything goes.
I'm sure both of these are probably very easy things to see - which is why there aren't a great deal of threads on them. So any help - vastly appreciated.