Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
Addon Configuration Command Line
#1
I'm trying to setup a shortcut on my homes screen to the configure option of my emby-next-gen addon.  I know how to create the shortcut, but I need help with the command line to configure.

The command below will launch the addon, but I want the command to configure the addon.
ActivateWindow(Videos,"plugin://plugin.video.emby-next-gen",return)
Reply
#2
Taking a quick look at that addon's plugin launch point, events.py, it looks like it gets a standard sys.argv list from Kodi, so try something like
Code:
ActivateWindow(Videos,"plugin://plugin.video.emby-next-gen?param1=AAA&param2=BBB",return)
 Look in events.py for valid parameters https://github.com/MediaBrowser/plugin.v.../events.py. Might be better to follow up at emby's support site.

scott s.
.
Reply

Logout Mark Read Team Forum Stats Members Help
Addon Configuration Command Line0