Jump to content
LaunchBox Community Forums

Kiinkyfoxx

Members
  • Posts

    161
  • Joined

  • Last visited

Everything posted by Kiinkyfoxx

  1. Have you seen my reply in your other thread about this? I know it isn't a perfect solution but it will work as a short term fix and means that the mouse won't annoy you whilst you are playing.
  2. I also couldn't get it to close using the running autohotkey script tab in Emulator, but then after changing my set up to use my arcade joystick and buttons as a mouse and keyboard (so that I don't have to fumble around for the keyboard to play these games) and building the close process into that AHK it can be done. Using the Additional Apps, you can add an application that automatically runs before the game, and put the exit technique in there. So make your ahk/exe with whichever key you want to exit with (only thing I have against Esc for this is that some of these games use escape as a scene skip) or you could have it so you have to hold it for 5 seconds for it to be exit and can then still use Escape in game (I decided to send Alt&F4 as that is a generic exit technique for the emulator rather than close process etc) I have adapted the AHK to let you use Escape to skip scenes by pressing and to hold Escape key for 5 seconds to exit (checked it on my build and worked). ~Esc:: { keywait, Esc, t5 if errorlevel <> 0 { Send !{F4} Exitapp } } You can then either add this Additional app to each game - fine if you only have a handful of games. However if you have lots of games you can follow the below link which can add the Additional app to all games in one platform. Hope that works for you.
  3. I think in Demul you can do alternative control settings as well so might not need analog and digital set ups. Open Demul -------Config-----Controls-------Joy 1--------Down the bottom there is a check box for alternative settings- check it and it takes you to a second config screen for the same joystick - I think if you set one screen up as analog and then the other as digital that might save you having duplicate platforms as well. It was a while ago I set mine up and I have changed a few things since, so this might not be correct but worth a try - unless you already have in which case ignore me.
  4. Whilst this part isn't much help to you - Launchbox 10.14 with Demul 28/4/18 is working here to hide the mouse. Works with hide mouse cursor during game checked in emulator startup screen page, and also when hidden on start up/load screen and in emulator. Like I say sorry that this isn't much help. However a work around would be to add the following into the Running Autohotkey Script It will move the mouse "off screen" and block any input to it so won't be able to come back on screen or annoy you (or be used full stop) and then on closing using Escape (Or change to whatever you use) will allow mouse to be used again and put back into middle of screen (well middle of my screen which is 1920x1080 - you can change those numbers to whatever you want) or you could just move it and not block it if you want/need to be able to use it whilst Demul is open Or you could use nomousy If you have already thought of this and it comes across as teaching you to suck eggs please accept my apologies. Hope this helps MouseMove, 9999, 9999 BlockInput, MouseMove $Esc:: { BlockInput MouseMoveOff MouseMove, 960, 540, 0 WinClose, ahk_exe {{{StartupEXE}}} }
  5. Hi Clarkus, The reason the Wiki says older versions is because every time TP was updated it would stop working with Demulshooter, however that has changed and normally updated versions of TP don't break ability to use with Demulshooter. I have just updated a version of TP, and the newest version is still working, so it doesn't matter if you update TP completely, it should still work for you. Have you run Demulshooter in debug mode? this is a handy way to check that it is hooking correctly, to do this add -v to your command line or shortcut (not sure on how you do it) Happy to help out, so if you want to PM me then you can, I don't use Aimtrak myself, I use Wiimotes which add another level of complexity to it!!!, but the theory is the same, quite often it is a simple mistake or error and a fresh pair of eyes help!! Hopefully this doesn't sound patronising or like a lecture, and don't be afraid to ask for help, everyone does and if you look on this site and others you will find plenty examples of that. As a side note doesn't matter where you have Demulshooter and the game, as long as you set up your system "correctly" (that is my definition of correctly -other people will have a different version of correctly) you can do it all with one version of Demulshooter (Ok technically I have 3 but that is only because 2 games on my system are a PIA and only work with a specific version of Demulshooter-that is a limitation of my old computer rather than the programme though) Regards
  6. Hi, I only use TP for a handful of games but I think Escape is a generic exit key So change Process, Close, {{{TeknoparrotUi.exe}}} to Send, {Esc} I adapted your AHK with the above line and it worked on the 3 games I checked - (the only one I have an issue with on my system is Mario Kart, because that leaves an extra command window, but this can be closed by adding WinClose, "Name of Window on your system" if you have same issue) Hope this works for you. Regards
×
×
  • Create New...