Skip to content
HIGHWAY99 edited this page Aug 8, 2013 · 2 revisions

Normal Search

  • Just a simple Title search.
  • This can be linked to from other Plugin(s) / Add-on(s).

For TV Shows

if os.path.exists(xbmc.translatePath("special://home/addons/") + 'plugin.video.solarmovie.so'): contextmenuitems.append(('Search Solarmovie.so', 'XBMC.Container.Update(%s?mode=%s&section=%s&title=%s)' % ('plugin://plugin.video.solarmovie.so/','Search','tv',title)))

For Movies

if os.path.exists(xbmc.translatePath("special://home/addons/") + 'plugin.video.solarmovie.so'): contextmenuitems.append(('Search Solarmovie.so', 'XBMC.Container.Update(%s?mode=%s&section=%s&title=%s)' % ('plugin://plugin.video.solarmovie.so/','Search','movies',title)))

  • To Simplify it a bit more you basically need:
  1. Mode = "Search"
  2. Section = "tv" or "movies"
  3. Title = "What you want to search for"

"plugin://plugin.video.solarmovie.so/"

Clone this wiki locally