Need some help with displaying favourites
#1
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>
Reply
#2
Nevermind i got it

<content>favourites://</content>
Reply
#3
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>
Reply
#4
(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.
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#5
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)
Reply
#6
(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.
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#7
Yeah it doesn't work when i click on it. Any ideas how i can get this to work?
Reply
#8
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)]
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#9
(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.
Reply
#10
(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
Reply
#11
(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
Reply
#12
(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>
Reply
#13
Addon thread: http://forum.kodi.tv/showthread.php?tid=235676
Readme of the addon: https://github.com/marcelveldt/script.sk...t-provider
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
#14
(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.
Reply
#15
did you guys push an update yet?
Reply

Logout Mark Read Team Forum Stats Members Help
Need some help with displaying favourites0