(2020-05-05, 21:28)ringling Wrote: @mikeSiLVO , been a long time since I needed your help. Still using Silvo and is always getting better. Did run into a problem though with Version 7.0.9. Running a library of local content from a external drive. All links from this source are added to the library and functioning. Where there is a problem is when I use a widget to display the titles. When setting up a widget to display the titles I choose Select Widget/Video Library/Movies. There is no option for just plain Titles so the best option from here is the 2nd instance of Random Movies. It works and the graphics are displayed but, it will only display a max of 20 panels. Definitely not good when you need to see many more than that. ------- Now, should I instead choose Select Widget/Video Library/Sources and then my Movies folder, I now have all the panels, but no metadata or graphics and only the filename is displayed. I have been using the library function for years successfully but this new version of Silvo I am struggling with. It appears to be your end but should you think of something I have not done correctly I would appreciate the help. Please have a look if you would. Should you have to do some coding, can I ask for a addition? Sure would like to have a option to display a alternative .jpg of our choosing should there be no images available. Thanks Mike, Appreciate all your fine work through the years...
Easiest option is make a smart playlist and add that to the widget..
save as allmovies.xsp and put in your video playlists folder.
you can change limit to what you want depending how many movies you plan to have..
you can change also order direction etc...in this playlist they are shown alphapetical order ascending..
Also random movies will work but shows movies in random order..you just need to adjust limit in playlist so it shows more then 20 movies from skin extras folder..
Or better just create your own from kodi in playlists menu..you have the option to create smart playlist..
For Movies:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>All movies</name>
<match>all</match>
<limit>250</limit>
<order direction="ascending">sorttitle</order>
</smartplaylist>
For TvShows:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>All Tv Shows</name>
<match>all</match>
<limit>250</limit>
<order direction="ascending">sorttitle</order>
</smartplaylist>