Wall view for video playlists
#1
I'm using video playlists to show things like unwatched movies. In Conq the Wall view is not available for the video playlists. It is available for the default movie view. How can I make the wall view available? I'm assuming I'll have to modify an xml file from addons\skin.conq\16x9 but I can't figure it out. I think Viewtype53 is the wall view.
Reply
#2
In viewtype53.xml you need to change the visibility condition:

Code:
<!-- Thumbs -->
            <control type="panel" id="53">
                <left>150</left>
                <top>170</top>
                <width>1620</width>
                <height>666</height>
                <onleft>63</onleft>
                <onright condition="!Skin.HasSetting(KioskMode)">3001</onright>
                <onup>53</onup>
                <ondown>53</ondown>
                <pagecontrol>63</pagecontrol>
                <preloaditems>4</preloaditems>
                <viewtype label="Wall">icon</viewtype>
                <scrolltime tween="sine" easing="out">240</scrolltime>
                <visible>SubString(Container.FolderPath,videodb://movies/titles/) | SubString(Container.FolderPath,videodb://tvshows/titles/)</visible>

ie the last line. Try:

<visible>SubString(Container.FolderPath,videodb://movies/titles/) | SubString(Container.FolderPath,videodb://tvshows/titles/) | SubString(Container.FolderPath,special://profile/playlists/</visible>
Reply
#3
Thanks! That worked perfectly!
Reply

Logout Mark Read Team Forum Stats Members Help
Wall view for video playlists0