Main Restorations Software Audio/Jukebox/MP3 Everything Else Buy/Sell/Trade
Project Announcements Monitor/Video GroovyMAME Merit/JVL Touchscreen Meet Up Retail Vendors
Driving & Racing Woodworking Software Support Forums Consoles Project Arcade Reviews
Automated Projects Artwork Frontend Support Forums Pinball Forum Discussion Old Boards
Raspberry Pi & Dev Board controls.dat Linux Miscellaneous Arcade Wiki Discussion Old Archives
Lightguns Arcade1Up Try the site in https mode Site News

Unread posts | New Replies | Recent posts | Rules | Chatroom | Wiki | File Repository | RSS | Submit news

  

Author Topic: how to edit computer games to open full screen  (Read 2463 times)

0 Members and 1 Guest are viewing this topic.

mrcram

  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 187
  • Last login:October 07, 2016, 05:47:03 am
  • OREGON STATE
how to edit computer games to open full screen
« 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?

Fozzy The Bear

  • Handbags at dawn in here!!!
  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1831
  • Last login:September 18, 2011, 11:29:59 am
  • It's Been One Of Those Days... Don't Ask!
Re: how to edit computer games to open full screen
« Reply #1 on: April 11, 2006, 08:07:10 am »
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)
Most bottles and jars contain at least twenty-five percent recycled Pacman.
And research indicates that Space Invaders are strongly attracted to people who have recently eaten meat pies.

Havok

  • Keeper of the __Blue_Stars___
  • Trade Count: (+17)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 4530
  • Last login:June 22, 2025, 02:32:40 am
  • Insufficient facts always invite danger.
Re: how to edit computer games to open full screen
« Reply #2 on: April 11, 2006, 02:45:48 pm »
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...

Fozzy The Bear

  • Handbags at dawn in here!!!
  • Trade Count: (+1)
  • Full Member
  • ***
  • Offline Offline
  • Posts: 1831
  • Last login:September 18, 2011, 11:29:59 am
  • It's Been One Of Those Days... Don't Ask!
Re: how to edit computer games to open full screen
« Reply #3 on: April 12, 2006, 07:50:54 am »
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)
Most bottles and jars contain at least twenty-five percent recycled Pacman.
And research indicates that Space Invaders are strongly attracted to people who have recently eaten meat pies.