Kodi Community Forum
Trouble with Combining Playlist - need assistance - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: Trouble with Combining Playlist - need assistance (/showthread.php?tid=192800)



Trouble with Combining Playlist - need assistance - Livin - 2014-04-21

Hoping someone can help me figure out what is happening here. Thx in advance!

Trying to combine two playlists to create a "Kids Movies" list...

Code:
<?xml version="1.0"?>
<smartplaylist type="movies">
  <name>Kids Movies</name>
  <match>all</match>
  <rule field="playlist" operator="is">Family Movies Rated G</rule>
  <rule field="playlist" operator="is">Family Movies Rated PG</rule>
</smartplaylist>

using...

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>Family Movies Rated PG</name>
<match>all</match>
<rule field="genre" operator="contains">Family</rule>
<rule field="mpaarating" operator="is">Rated PG</rule>
<order direction="ascending">title</order>
</smartplaylist>
+
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>Family Movies Rated G</name>
<match>all</match>
<rule field="genre" operator="contains">Family</rule>
<rule field="mpaarating" operator="is">Rated G</rule>
<order direction="ascending">title</order>
</smartplaylist>



RE: Trouble with Combining Playlist - need assistance - Livin - 2014-04-23

no help?


RE: Trouble with Combining Playlist - need assistance - jmarshall - 2014-04-23

The problem is <match>all</match>. No movie is in both playlists.