Jump to content
LaunchBox Community Forums

MS-Dos AHK script wont run


syntax_X

Recommended Posts

I can't get the MS-DOS Auto hot key script to run.

I think its because all my MS-Dos games run from .bat files and I have chosen the "Do not use DosBox/ScummVM"

I just need an Ipac reprogramming script to run on game launch and on process exit. 

I have it all working in other emulators fine so I know its not an issue with the script.

 

Edited by syntax_X
Link to comment
Share on other sites

Ok so I can get the first half of my script running by making it a .bat and running it as an additional app.

Seems there still isn't a bulk edit option for this or a Platform additional app option.

If we do end up getting this implemented can it also be made to execute additional apps on process exit?  Or Aps that be executed everytime we go back to Bigbox/launchbox?

Ancient frontends like Mamewah could do this with ease.

Link to comment
Share on other sites

Update**

Made a batch file that checks the process list for emulators , if found flashes the Ipac to that emulator.

The second you exit the emulator the Ipac flashes to BigBox/LB and starts to check the process list for emulators again.

 
Works fine, Its not really ideal as its polling the tasklist a lot , but it works.
 

Ipac_Auto_Flasher.zip

Ipac_Auto_Flasher.bat

Edited by syntax_X
Link to comment
Share on other sites

  • 1 month later...

OKey this looks bit complicated, will need to look into this.

Basicly i need to close the emulator with 1 key and once closed the key can be used in bigbox again.
So i dont want to bind 1 key to alt+f4 because if i close the emulator it goes to bigbox and then i cant use this key anymore.

 

In bigbox i have the C key setup as "back button" but in most emulators i have setup the C key also to close the emulator.

Example mame has key setting "UI cancel or UI exit" to close the emulator, but once closed the key can be used as back again which is great.
However not all emulators have keysetting to close the emulator

 

But thanks for providing the link, will check it out

 

Link to comment
Share on other sites

You can do that with an AHK script and focus. 

#IfWinActive, LaunchBox Big Box

!f4::c


should work
It will make alt+F4 only return C and only when bigbox is in focus.

if not try


!f4:: Send c

or


!{f4}::c

Edited by syntax_X
Link to comment
Share on other sites

or add this AHK script to every emulator you use/need to. It will force close the currently open process with esc.
Map back in bigbox to ESC also.

$Esc::
{
 Process, Close, {{{StartupEXE}}}
}

 

 

Edited by syntax_X
  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...