Win XBMCLauncher / Launcher4Kodi - All in One Tool for Change Shell, Set Focus and more
Quote:I'd like to be able to run the 3rd party apps and/or scripts that you can specify in the settings with each start of XMBC. However, it seems this can only be done at each start of XMBC_Launcher.

The third party apps are started only when xbmclauncher is starting. If you want to start the apps with xbmc, you need to edit the script.

Quote:I've also noticed that XBMC.exe doesn't start when XBMC_Launcher starts. Is that by default? I've simply added XBMC.exe as one of the startup apps with XBMC_Launcher.

There is no need to add xbmc to the autostart list. Use the dedicated menu 'Set XBMC Path'. The application can automatically guess xbmc location in your programs folder, but if you have installed xbmc in some other folder then use this menu to select the xbmc path. XBMC should start automatically whenever the launcher starts. For this enable the option 'Start XBMC when Windows starts'. If you want xbmc to start when resuming from sleep then enable 'Start XBMC when Windows resumes from sleep'.

Quote:Is there a way to stop/quit XBMC_Launcher from XBMC's shutdown dialog, so that the next time I wish to run XBMC, I simply start XBMC_Launcher instead (along with specified apps). (Simply attempting to execute XBMC_Launcher while its already running in the system tray doesn't re-excecute XBMC and the other apps.)

XBMCLauncher is designed to run in the background to monitor xbmc and to launch it using the mce green button and also to start xbmc when resuming from sleep. But if you want to exit xbmclauncher when xbmc exits, edit the xbmclauncher.ahk script file and add a command 'ExitApp'. For this add a new function ExitXBMCLauncher() under the line 'MonitorEvents:' and define the function as

Code:
ExitXBMCLauncher()
{    
    Process, Exist, xbmc.exe ; check to see if xbmc.exe is running
            If (ErrorLevel = 0) ;if not running
            ExitApp ; close app.
}
Reply


Messages In This Thread
green start button remapping - by Cassiel - 2013-02-12, 21:44
RE: XBMC Launcher - by Govnah - 2013-02-16, 06:32
RE: XBMCLauncher - by MBulli - 2013-02-17, 12:20
RE: XBMCLauncher - All in One Tool for Change Shell, Set Focus and more - by baijuxavior - 2013-02-18, 18:22
Launcher4Kodi - by baijuxavior - 2015-02-17, 15:27
lack of focus - by runey71 - 2015-02-18, 07:53
black screen problem - by -CraZed- - 2015-03-18, 06:36
RE: XBMCLauncher / Launcher4Kodi - by TB4875 - 2015-03-25, 11:49
RE: XBMCLauncher / Launcher4Kodi - by kmarq - 2015-05-19, 14:41
Error - by liamp - 2015-05-31, 23:03
RE: XBMCLauncher / Launcher4Kodi - by gitman - 2015-06-07, 21:40
RE: XBMCLauncher / Launcher4Kodi - by RockerC - 2015-06-16, 16:28
RE: Using Tweak UAC - by berkhornet - 2015-07-13, 19:04
RE: - by alsergo - 2015-11-25, 00:11
W10 and netflix - by Cassiuss - 2016-01-10, 15:50
netflix - by Cassiuss - 2016-01-11, 09:11
netflix - by Cassiuss - 2016-01-11, 11:12
netflix - by Cassiuss - 2016-01-11, 13:04
netflix - by Cassiuss - 2016-01-11, 11:44
Reverse shell to explorer - by shayosef - 2016-01-17, 14:24
Launcher4Kodi improvement - by kalhimeo - 2016-01-27, 20:20
resume during recording kodi - by eddedrukker - 2016-04-03, 08:58
RE: XBMCLauncher / Launcher4Kodi - by leezy88 - 2017-02-06, 09:41
Might be of use to someone... - by Grumpy - 2017-09-19, 04:18
Logout Mark Read Team Forum Stats Members Help
XBMCLauncher / Launcher4Kodi - All in One Tool for Change Shell, Set Focus and more20