Kodi Community Forum

Full Version: How to know path of my add on?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

I installed my custom "add on" and it run as

 <onclick>ActivateWindow(Videos,addons://sources/video/)</onclick>

then it shows my video "add on" list window.It works fine.

However, I would like to run my specific video addon like this

<onclick>ActivateWindow(Videos,addons://sources/video/myaddon/)</onclick>

to do that, I need my addon path (If I have correct)

Can you advise me how to know the path of video app?
Thread moved to addon development.
if you want to run a plugin from within a skin, you need to use the 'addon id'.

for instance, this will run the youtube plugin:
xml:
<onclick>ActivateWindow(Videos,plugin://plugin.video.youtube/)</onclick>
(2020-05-23, 12:41)ronie Wrote: [ -> ]if you want to run a plugin from within a skin, you need to use the 'addon id'.

for instance, this will run the youtube plugin:
xml:
<onclick>ActivateWindow(Videos,plugin://plugin.video.youtube/)</onclick>
Appreciate. It works.