Kodi Community Forum
Need some help with displaying favourites - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: Need some help with displaying favourites (/showthread.php?tid=276365)

Pages: 1 2


Need some help with displaying favourites - Mikewave - 2016-05-24

I'm trying to find a way to display the favourites on the main menu of my skin but can't seem to figure out how to do so! Any help will be great. This is what i have tried and no go!

Code:
<content target="video">script.favourites</content>



RE: Need some help with displaying favourites - Mikewave - 2016-05-24

Nevermind i got it

<content>favourites://</content>


RE: Need some help with displaying favourites - BigNoid - 2016-05-24

iirc clicking on items from that path doesn't work. You can use extended info script for that with
Code:
<content>plugin://script.extendedinfo?info=favourites</content>



RE: Need some help with displaying favourites - sualfred - 2016-05-24

(2016-05-24, 19:35)BigNoid Wrote: iirc clicking on items from that path doesn't work. You can use extended info script for that with
Code:
<content>plugin://script.extendedinfo?info=favourites</content>

I have no issues with "favourites://". Videos, addons, or library sub directories are working well.


RE: Need some help with displaying favourites - BigNoid - 2016-05-24

Doesn't work on my end. Player tries to open it:
Code:
20:13:41 T:140735241543680   ERROR: PlayMedia could not play media: ActivateWindow(10025,"plugin://plugin.video.youtube/",return)



RE: Need some help with displaying favourites - sualfred - 2016-05-24

(2016-05-24, 20:21)BigNoid Wrote: Doesn't work on my end. Player tries to open it:
Code:
20:13:41 T:140735241543680   ERROR: PlayMedia could not play media: ActivateWindow(10025,"plugin://plugin.video.youtube/",return)

Ah my fault. I forgot that I only use the dynamic content list method for displaying the items. As soon I access it it's going to open the favourites dialog.


RE: Need some help with displaying favourites - Mikewave - 2016-05-30

Yeah it doesn't work when i click on it. Any ideas how i can get this to work?


RE: Need some help with displaying favourites - sualfred - 2016-05-30

As BigNoid said -> use ExtendedInfo script

Also possible with the skin helper script by using:
Code:
plugin://script.skin.helper.service/?action=favourites&amp;limit=[LIMIT]&amp;reload=$INFO[Window(Home).Property(widgetreload2)]



RE: Need some help with displaying favourites - Mikewave - 2016-05-30

(2016-05-24, 21:01)sualfred Wrote:
(2016-05-24, 20:21)BigNoid Wrote: Doesn't work on my end. Player tries to open it:
Code:
20:13:41 T:140735241543680   ERROR: PlayMedia could not play media: ActivateWindow(10025,"plugin://plugin.video.youtube/",return)

Ah my fault. I forgot that I only use the dynamic content list method for displaying the items. As soon I access it it's going to open the favourites dialog.

I get the same when trying to click on it.


RE: Need some help with displaying favourites - Mikewave - 2016-05-30

(2016-05-30, 20:10)sualfred Wrote: As BigNoid said -> use ExtendedInfo script

Also possible with the skin helper script by using:
Code:
plugin://script.skin.helper.service/?action=favourites&amp;limit=[LIMIT]&amp;reload=$INFO[Window(Home).Property(widgetreload2)]

I'll check that out thanks


RE: Need some help with displaying favourites - Mikewave - 2016-05-30

(2016-05-24, 19:35)BigNoid Wrote: iirc clicking on items from that path doesn't work. You can use extended info script for that with
Code:
<content>plugin://script.extendedinfo?info=favourites</content>

I tried to use this but nothing comes up


RE: Need some help with displaying favourites - Mikewave - 2016-05-30

(2016-05-30, 20:10)sualfred Wrote: As BigNoid said -> use ExtendedInfo script

Also possible with the skin helper script by using:
Code:
plugin://script.skin.helper.service/?action=favourites&amp;limit=[LIMIT]&amp;reload=$INFO[Window(Home).Property(widgetreload2)]

How do i use skin helper script i have it installed and use this and didn't work for me

Code:
<content>plugin://script.skin.helper.service/?action=favourites&amp;limit=[LIMIT]&amp;reload=$INFO[Window(Home).Property(widgetreload2)]</content>



RE: Need some help with displaying favourites - sualfred - 2016-05-30

Addon thread: http://forum.kodi.tv/showthread.php?tid=235676
Readme of the addon: https://github.com/marcelveldt/script.skin.helper.service#dynamic-content-provider


RE: Need some help with displaying favourites - BigNoid - 2016-05-30

(2016-05-30, 20:24)Mikewave Wrote:
(2016-05-24, 19:35)BigNoid Wrote: iirc clicking on items from that path doesn't work. You can use extended info script for that with
Code:
<content>plugin://script.extendedinfo?info=favourites</content>

I tried to use this but nothing comes up

Yeah was broken. Phil65 fixed that just now.


RE: Need some help with displaying favourites - Mikewave - 2016-05-31

did you guys push an update yet?