I just realized something the script that forces Launchbox to stay open is causing the issue.
#SingleInstance, Force
iTC_EXE = "c:\Launchbox\Launchbox.exe"
iTC_Path = "c:\Launchbox\"
iTC_imgName = Launchbox.exe
loop {
Process, Exist, %iTC_imgName% ; check to see if iTeleportConnect is running
If (ErrorLevel = 0) ; If it is not running
{
Run, %iTC_EXE%, %iTC_Path%, hide
}
Else ; If it is running, ErrorLevel equals the process id for the target program (Printkey). Then do nothing.
{
sleep 5
}
}
So it keeps checking if launchbox is open so I guess when Big box is running launchbox.exe can't run so the conflict causes it to stay open in task manager?Is there any adjustment I can do where I can keep using this script and Launchbox will open after closing Big Box? I changed sleep 5 to sleep 8000 but that didn't help.