I was wondering if someone could help me. I've got Sega Rally Revo and Outrun Coast 2 Coast running on my cab. However I can't seem to configure the keyboard for either game. Sega Rally Revo has greyed out the keyboard section of the config program so I can't change anything. I can change the keys on Outrun but it doesn't allow me to get to the games menu (escape by default i think), and also when i quit the game and go back in the keys have gone back to default

.
The default keys work for for both games and i was wondering if AutoHotKey could be used to substitute my button keys for the default in each game. I'm not sure how i would go about writing the script for this though

Also i am running maximus arcade and when i quit Sega Rally Revo by holding down END (this is my quit button for all emulators) the screen goes blank and i can here that maximus is running but i think Sega Rally is still running. I have to CTRL ALT Delete to shut the process down manually to quit it. I had the same problem with Street Fighter IV but since I used the script to bypass the launcher screen (see below) it seems to quit fine (i changed the ESC to and END and it worked!) So perhaps i could use some of the script below to help me quit Sega Rally, but i'm not sure how. I've tried a few times but it doesn't seem to work. Can anyone experienced with AHK help me out?

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
Blockinput on
SetBatchLines -1
Gui +AlwaysOnTop -Caption +ToolWindow
Gui Color, 0
Gui Show, x0 y0 h%A_ScreenHeight% w%A_ScreenWidth%, HSHIDE
Run, SF4Launcher.exe, , Max
WinWait, STREET FIGHTER IV LAUNCHER
IfWinNotActive, STREET FIGHTER IV LAUNCHER
WinWaitActive, STREET FIGHTER IV LAUNCHER
Send, {enter}
Blockinput off
Process, WaitClose, StreetFighterIV.exe
return
ESC::
Process, Close, StreetFighterIV.exe
ExitAPP
return