Kodi Community Forum
http url to go to home screen - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93)
+--- Thread: http url to go to home screen (/showthread.php?tid=71449)



http url to go to home screen - revilo78 - 2010-04-04

Is there a http url command to set XBMC to the home screen? I saw in the wiki that WINDOW_HOME was defined as 10000 so I tried the following without luck:
http://192.168.0.114/xbmcCmds/xbmcHttp?command=Action(10000)


- sWORDs - 2010-04-06

Code:
http://192.168.0.114:8080/xbmcCmds/xbmcHttp?command=ExecBuiltIn(ActivateWindow(home))
Or without the :8080 if you've set it up on port 80.


- revilo78 - 2010-04-07

Perfect, thanks for the help.