I'll show you how i've done it,
This is my main movies playlist i use after removing the main one that show everything added to the library.
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>MOVIES</name>
<match>all</match>
<rule field="path" operator="doesnotcontain">
<value>nfs://192.168.2.200/Kids/</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
This is my entry i use for the Kids section
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>CARTOONS</name>
<match>all</match>
<rule field="path" operator="contains">
<value>nfs://192.168.2.200/Kids/</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
Latest added unseen movies
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>UnSeen-Movies</name>
<match>all</match>
<rule field="path" operator="doesnotcontain">
<value>nfs://192.168.2.200/Kimberley/</value>
</rule>
<rule field="playcount" operator="lessthan">
<value>1</value>
</rule>
<order direction="descending">dateadded</order>
</smartplaylist>
latest unseen kids movies
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>UnSeen-Cartoon</name>
<match>all</match>
<rule field="path" operator="doesnotcontain">
<value>nfs://192.168.2.200/Movies/</value>
</rule>
<rule field="playcount" operator="lessthan">
<value>1</value>
</rule>
<order direction="descending">dateadded</order>
</smartplaylist>