How to separate Movies in the library
#9
Hello,
if you use Kodi with as many movies as i did, an "alphabethic scrollbar" would be very nice.

you can do it with nodes
\Kodi\userdata\library\video\movies\
make a folder movies a-z
make index.xml
<?xml version='1.0' encoding='UTF-8'?>
<node order="5 A" type="folder" visible="Library.HasContent(Movies)">
 <label>Movies A - Z</label>
 <icon>AZ.png</icon>
 </node>

then you need to make the nodes for sorting the movies
a.xml
<?xml version='1.0' encoding='UTF-8'?> 
<node order="1" type="filter">
 <icon>a.png</icon>
<label>A</label> 
 <name>a</name>
<content>movies</content> 
<match>one</match>
<rule field="originaltitle" operator="startswith"> 
<value>a</value>
 <rule field="originaltitle" operator="startswith">
        <value>THE A</value>
    </rule>
</rule> 
</node> 
https://nofile.io/f/8sOefnMr0MF/a-z+movies.zip

Image
Reply


Messages In This Thread
RE: How to separate Movies in the library - by the_other_guy - 2018-08-06, 04:14
Logout Mark Read Team Forum Stats Members Help
How to separate Movies in the library0