Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started by: mrcram on April 10, 2006, 08:13:55 pm
-
how do you edit the config file to open full screen instead of a window for computer games like crime patrol and drug wars?
-
how do you edit the config file to open full screen instead of a window for computer games like crime patrol and drug wars?
First of all you try using search and reading the LED light gun thread..... The answer to that is in there......
But.... I'll give you the answer anyway.
First of all, get hold of a piece of software called AutoHotkey. It's freeware so just do a search on the web for it. Then create the following script for it:
************************************
Run,mdm.exe ; Run MadDog McCree
IfWinNotExist,Mad Dog McCree
{
winwait,Mad Dog McCree,,100
WinActivate,Mad Dog McCree
Send f ; Fullscreen
Send r ; reload don't move the cursor down
return
}
else
{
WinActivate,Mad Dog McCree
Send f ; Fullscreen
Send r ; Reload don't move the cursor down
return
}
*1::Send {LControl}; like LControl starts the game I remap to the '1' key
ExitApp ; Kill this script
return
************************************
That one is for Mad Dog McCree but it's easily modified for the other American Laser Games.
That will run it full screen at startup and not move your cursor on reload.
Best Regards,
Julian (Fozzy The Bear)
-
Hey - that's the freeware version of Winbatch! (AutoIT) Ahh, the memories...
I used to use that to automate software deployment back in the day before I learned to create Windows Installer packages for everything...
-
Hey - that's the freeware version of Winbatch! (AutoIT) Ahh, the memories...
Yeah! "AutoHotkey" is a really useful little util when you want to do things like feeding information to other bits of software. It's great for creating startup routines that you can then run from inside MameWah because you can turn your scripts into an EXE file really easily and can then run them without AutoHotkey itself installed.
Best Regards,
Julian (Fozzy The Bear)