Hey guys,
I just bought the 1 year license and I'm really happy with Launchbox!
I figured out pretty much everything I want. The last thing on my list is to exit BigBox via Xbox One Controller. I just want to press two buttons (L3 + Back) and get back to BigBox from ingame. I read a couple of topics but nothing seem to work.
Autohotkey just works in Launchbox, but not in BigBox. Using Escape works in both modes though.
$Esc::
{
Process, Close, {{{StartupEXE}}}
Run, D:\Program Files (x86)\LaunchBox\nomousy.exe
WinClose, ahk_class window ahk_exe demul.exe
}
#SingleInstance Force
Joy1::
if GetKeyState("Button7")
if GetKeyState("Button9")
{
Process, Close, {{{StartupEXE}}}
Run, D:\Program Files (x86)\LaunchBox\nomousy.exe
WinClose, ahk_class window ahk_exe demul.exe
}
This is the code I'm using.
Couldn't get Xpadder to work and I don't really want to buy it either, but I may do that if there is really no other way.
Can anyone come up with a solution? Thanks in advance!