How to make addon directly open settings menu of addon when opening
#1
I'm making a addon... I want to be opened settings menu on my addon when opening the addon. Here sample

Think my addon name is "Hello World" (script.helloworld)

Open Kodi
Go to Programs section
Open Hello World addon

(When we open it showing the settings menu of Hello World Addon...)

Anyone knows?
Reply
#2
http://mirrors.kodi.tv/docs/python-docs/

http://mirrors.kodi.tv/docs/python-docs/...enSettings

PHP Code:
xbmcaddon.Addon().Settings.openSettings() 

*untested
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#3
(2015-08-03, 11:06)Martijn Wrote: http://mirrors.kodi.tv/docs/python-docs/

http://mirrors.kodi.tv/docs/python-docs/...enSettings

PHP Code:
xbmcaddon.Addon().Settings.openSettings() 

*untested

AttributeError: 'xbmcaddon.Addon' object has no attribute 'Settings'
Reply
#4
may be a typo in the pydocs

try
xbmcaddon.Addon().openSettings()
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
#5
Heart 
(2015-08-03, 11:23)Martijn Wrote: may be a typo in the pydocs

try
xbmcaddon.Addon().openSettings()

Awesome. It worked... U are the best...
Reply

Logout Mark Read Team Forum Stats Members Help
How to make addon directly open settings menu of addon when opening0