Widget to show all the movies
#1
Hi,
Is there a widget that allow to show in the home ALL the movies in my collection instead of having to choose between random, recently added etc?

Thanks

Mattia
Reply
#2
What's wrong with clicking 'Movies' in the main menu?
Reply
#3
Nothing wrong about that. I would just like to have all my movies there without clicking. That's all
Reply
#4
why not just have kodi open in videos 
you could make a smart play list copy it to playlist folder of skin edit home.xml and add to widgets
allmovies.xsp
xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name></name>
    <match>all</match>
    <rule field="playcount" operator="lessthan">
        <value>1</value>
    </rule>
</smartplaylist>

edit home 
place under inprogress_movies
xml:
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
                            <param name="content_path" value="special://skin/playlists/allmovies.xsp"/>
                            <param name="widget_header" value="all movies"/>
                            <param name="widget_target" value="videos"/>
                            <param name="list_id" value="5105"/>
                        </include>
Reply
#5
thanks! Perfect solution!

Mattia
Reply

Logout Mark Read Team Forum Stats Members Help
Widget to show all the movies0