-
Notifications
You must be signed in to change notification settings - Fork 3
NormalSearch
HIGHWAY99 edited this page Aug 8, 2013
·
2 revisions
- Just a simple Title search.
- This can be linked to from other Plugin(s) / Add-on(s).
if os.path.exists(xbmc.translatePath("special://home/addons/") + 'plugin.video.solarmovie.so'):
contextmenuitems.append(('Search Solarmovie.so', 'XBMC.Container.Update(%s?mode=%s§ion=%s&title=%s)' %
('plugin://plugin.video.solarmovie.so/','Search','tv',title)))
if os.path.exists(xbmc.translatePath("special://home/addons/") + 'plugin.video.solarmovie.so'):
contextmenuitems.append(('Search Solarmovie.so', 'XBMC.Container.Update(%s?mode=%s§ion=%s&title=%s)' %
('plugin://plugin.video.solarmovie.so/','Search','movies',title)))
- To Simplify it a bit more you basically need:
- Mode = "Search"
- Section = "tv" or "movies"
- Title = "What you want to search for"
"plugin://plugin.video.solarmovie.so/"