Kodi Community Forum
[WINDOWS] Boxee/XBMC Launcher Request - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+--- Thread: [WINDOWS] Boxee/XBMC Launcher Request (/showthread.php?tid=74733)



[WINDOWS] Boxee/XBMC Launcher Request - starpc - 2010-05-28

I've been trying to figure out a way to launch Boxee from within xbmc and also xbmc from within Boxee. Preferably when switching to xbmc/boxee the other one would close.

Please let me know if this is possible.

Thanks,
Starpc


- lazyboy0172 - 2010-05-30

i'm having a similar issue and would love a solution. i tried using the launcher script and added boxee to it, but when launching boxee from that it gives a fatal error about no suitable skin version found... launching boxee from the same exe in windows explorer though, even with xbmc running in the background, produces no error.


- theophile - 2010-05-30

To avoid that, you need to shut down XBMC first. The way to accomplish that is to write a small wrapper script that kills XBMC before launching Boxee and have the launcher plugin execute the script.


can you get back to xbmc? - tarbush - 2010-06-07

Once you exit boxee, it won't go back to xbmc, will it?


- Skindred - 2010-06-08

Create a simple autoit script.

Something like this (note that this is not actual code, just a simplistic way of making an example);

Code:
If WindowState.Active("XBMC") && WindowState.Active("Boxee") Then
WindowKill("Boxee")
EndIf

If WindowState.Active("XBMC") Then
WindowKill("XBMC")
Launch("Boxee")
EndIf

If WindowState.Active("Boxee") Then
WindowKill("Boxee")
Launch("XBMC")
EndIf