Fullscreen for the great Neo Geo CD emulator (SLDNEOGEO) NeoCD031:
I have solved this problem myself. The solution envolves the program Autohotkey. The program that by scripts makes keys do a little more if needed.
On my Mala setup i have key 1 to start games from mala lists, and keys 1 and 2 to start games (1 player and 2 player when you have entered a game). I also choose these to make the emu screen to fullscreen. This just means that you need to press key 1, one more time before playing.
Start Autohotkey. Use Notepad to make the script and make the document an .ahk type. Right click and compile script. Now place this exe in the start folder in your xp.
Everything is now ready and will run. The Emulator is far the best for Neo Geo CD games. Its flawless as far as i can tell.
---------------------------------------------------------
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
Loop
{
~1::F1
~2::F2
~space::1 ;this key you can freely choose, its the start player one key.
return
}
----------------------------------------------------------------------------------