Kodi Community Forum

Full Version: Need some help with displaying favourites
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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>
Nevermind i got it

<content>favourites://</content>
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>
(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.
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)
(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.
Yeah it doesn't work when i click on it. Any ideas how i can get this to work?
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)]
(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.
(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
(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
(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>
(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.
did you guys push an update yet?
Pages: 1 2