Hey everyone,
I'll get straight to it. I've followed Brad's most excellent guide on getting Demul working with Launchbox. Everything has worked great so far. I've got it set to auto load full screen so that when I've loaded a game from Big Box, it'll just load straight up. I've remapped the default AHK that Jason wrote so that I can exit Demul using a button on my PS3 controller using Xinput. For some reason and I've only realised this now is that my PS3 button (Center mapped like the xbox button) isn't coming up as an actual 'joyxx' button. What I've done in the Demul AHK is just mapped it to 'Joy10' which is my R3 button. Not a real hassle but I can't figure out why Retroarch lets me use that button when I mapped it to close Retroarch?
The second issue and the main one I'd like to get resolved is that when auto loaded in full screen, Demul will automatically put my mouse cursor in the center on the screen and won't go away. There's no option in Demul to hide the cursor when like this. Can someone help me write a AHK script maybe that will auto move my mouse cursor to the bottom right corner of the screen? I'm not how to wite the script I need or where in the script the info I need goes. This is what I have now with just the 'Esc' key changed to 'joy10' my PS3's R3 button:
; This section closes Demul when pressing Escape
$joy10::
{
Process, Close, {{{StartupEXE}}}
}
Thanks for any suggestions!