Hey all,
I have made some custom video nodes:
Now, I want to get to my VideoLibrary > Comedy > Titles, straight from the home menu. So I added an item.
This obviously doens't work. But how do I get this working?
edit: this is the code for my custom nodes
I have made some custom video nodes:
Code:
userdata\library\video\comedy\index.xml
userdata\library\video\comedy\titles.xml
userdata\library\video\comedy\sets.xml (not working yet, doesn't accept filters)
userdata\library\video\comedy\tags.xml
Now, I want to get to my VideoLibrary > Comedy > Titles, straight from the home menu. So I added an item.
Code:
<item id="60606">
<label>Comedy</label>
<onclick>ActivateWindow(Videos,Comedy,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
<visible>!Skin.HasSetting(HomeMenuNoMovieButton) + Library.HasContent(Movies)</visible>
</item>
This obviously doens't work. But how do I get this working?
edit: this is the code for my custom nodes
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="1" type="filter">
<label>369</label>
<path>videodb://1/2</path>
<icon>DefaultMovieTitle.png</icon>
<content>movies</content>
<match>all</match>
<rule field="path" operator="contains">/Comedy/</rule>
</node>