syntax_X Posted May 31, 2017 Share Posted May 31, 2017 (edited) 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 May 31, 2017 by syntax_X Quote Link to comment Share on other sites More sharing options...
syntax_X Posted May 31, 2017 Author Share Posted May 31, 2017 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. Quote Link to comment Share on other sites More sharing options...
syntax_X Posted May 31, 2017 Author Share Posted May 31, 2017 (edited) 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 June 1, 2017 by syntax_X Quote Link to comment Share on other sites More sharing options...
FlawLezZ Posted July 4, 2017 Share Posted July 4, 2017 Would love to try this out, the download links arae not working. Anyone can report these? Quote Link to comment Share on other sites More sharing options...
syntax_X Posted July 4, 2017 Author Share Posted July 4, 2017 (edited) Ive changed the dosbox one to include scummvm and separate flashes to suit. Dosbox likes to minimise if you don't get a flash in fast so I made it do that first. Also included is one I use for FS-UAE Please edit the paths in the .bats to suit your winipac.exe and .ipc files.Ipac flasher stuff.zip Edited July 4, 2017 by syntax_X Quote Link to comment Share on other sites More sharing options...
FlawLezZ Posted July 4, 2017 Share Posted July 4, 2017 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 Quote Link to comment Share on other sites More sharing options...
syntax_X Posted July 4, 2017 Author Share Posted July 4, 2017 (edited) 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 July 4, 2017 by syntax_X Quote Link to comment Share on other sites More sharing options...
syntax_X Posted July 4, 2017 Author Share Posted July 4, 2017 (edited) 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 July 4, 2017 by syntax_X 1 Quote Link to comment Share on other sites More sharing options...
FlawLezZ Posted July 4, 2017 Share Posted July 4, 2017 Okey am not familiar with AHK but i will look into it C is my escape key in bigbox but also should be the exit key for when emulator is started Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.