Thanks for your responses guys. I'll give it a go.
Empardopo, I'm studying the PDF instructions on how to use AllInOne. Thank you for the suggestion.
I think I understand how to set up the .ini file to work, however I do not understand how to call the program into use through MALA. How do I open AllInOne through MALA before launching a game? How do I get it to run with any particular emulator with MALA?

Is a batch file the only way to connect Mala with AllInOne?
I tried launching it within the same batch file that launches a Daphne game. It doesn't really work in MALA. Mala launches both applications (AllInOne and Daphne) but it looses focus on the Daphne game and I'm dumped to Windows. Not good. How to fix?
Also when I open AllInOne my computer tried to open MSPaint briefly. Why does it to this?
I'm using Windows 7 64 bit.
Thanks.
[EDIT] OK, I figured out why it kept starting MSPaint. there's a separate section called "[Launch Process]" that has a default setting of "mspaint.exe". Took that out. Frustrating default coding. I think this was causing my loss of focus as well within MALA. The Daphne game would launch, then MSPaint, MSPaint would then quit (per the default coding settings) and then I'd be left in Windows.

[EDIT AGAIN...hours later] After having spent even more time with this program, and reading the instructions PDF in Spanish (Entiendí las instrucíones mejor en español. ¿Al lo mejor te podría ayudar, Empardopo, en hacer una mejor traduccíon de las instruciones en íngles?) I think I figured it out.
For others looking to use AllInOne to solve my same issue, this is what I would suggest:
The advantage of using Empardoro's AllInOne is that you can use one program and one file (AllinOne.ini) to control the quitting out of Daphne and ALL the Daphne games as well as multiple emulators. Auto Hot Key can be set up to do this as well but you'd have to create a separate script file for each and every game and again for each and every emulator. With Daphne (for me anyway) perhaps it's about the same either way since I've had to alter each of the original launch batch files (one per Daphne game anyway) to include a call to AllInOne. Another nice thing is that AllInOne is set to quit itself after executing the functions it was set up to run. In other words, it won't keep running in the background after remapping your "Quit Emulator" keys and/or launching your applications, etc. It doesn't keep using computer resources that should be dedicated to your emulator after doing what it needs to do.
If you only want to remap ONE key to quit Daphne, that can be done in Daphne itself. I needed AllInOne or AutoHotKey in order to map two key simultaneously as the "quit emulator" function.
The example code of a Galaxy Ranger BAT file to launch AllInOne and be used with Mala would be:
@echo off
Start D:\Utilities\AllInOne185be\AllInOne185be.exe
Start C:\Arcade\Daphne\Daphne.exe galaxy vldp -framefile C:\Arcade\Daphne\framefile\galaxyranger_frames.txt -fullscreen -x 1024 -y 768
I edited the above code down some on the third line by taking out much of the miscellaneous command line info I passed onto Daphne.exe. Use whatever command info you want in the third and forth line area. But the basic code structure is still there.
Now...in AllInOne you need to set up the following (non-code comments are in parathesis) in AllInOne.ini:
[KillProccesses]
KillProcessesActivate=YES
KeyToKill1=2 (this is to map the #2 key as my second combo key. My goal was to be able to press #2 and #4 simultaneously in order to close Daphne and jump back to MALA seamlessly)
KeytoKill2=4 (this is to map the #4 key as my second combo key)
ProcessToKill1=daphne.exe
(now jump down to "LaunchProcess")
[LaunchProcess]
EnableLaunchPrecess= (I left this empty since I don't want it to launch any other programs)
ProcessToLaunch= (delete "mspaint.exe". The default setting launches this program. Annoying)
(now jump down to "Focus")
[Focus]
EnableFocus=YES (not sure if this part is vital but I wanted to keep the focus on Daphne.exe instead of Windows or MALA while a game was running)
ProcessToBringInFocus=daphne.exe (I added daphne.exe here. Again, it may not be needed but this worked for me as an extra precaution. ,<Goes away to re-test> I've tested it both ways. Not necessary. I think the focus issue I had was with the "mspaint.exe" additional launch)
(all other script defaults kept as is except for a few timing tweaks)