Autoexec Service

From Official Kodi Wiki
Revision as of 20:33, 5 June 2014 by NedBot (talk | contribs) (Robot: Substituting template: Name)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Cleanup.png This page or section may require cleanup, updating, spellchecking, reformatting and/or updated images. Please improve this page if you can. The discussion page may contain suggestions.


autoexec.py is an optional python script that users can create in their userdata folders that will be executed when XBMC starts up.

Examples

This script will open up the video files view focused on the root of C:\ when XBMC is started.

 import xbmc
 xbmc.executebuiltin('XBMC.ActivateWindow(videofiles,C:\)')

Here is an example that starts your favourite addon:

 import xbmc
 xbmc.executebuiltin('XBMC.RunScript(script.audio.spotimc)')

And this example takes you to the movie overview:

 import xbmc
 xbmc.executebuiltin('XBMC.ActivateWindow(myvideolibrary,movietitles)')

References

Built-in scripting#Using Built-in Functions from python

List of built-in functions