v17 Updating Music View for Krypton
#1
I've been updating a Music View from Jarvis to Krypton code and everything is working now except the tracklist and duration info that displays on the back of a CD case.

This is in IncludesMusic.xml...

Code:
<include name="Trackl">
    <param name="ordert" />
    <param name="fontt" />
    <definition>
        <control type="textbox">
            <left>3</left>
            <top>130</top>
            <width>455</width>
            <height>411</height>
            <align>left</align>
            <aligny>top</aligny>
            <textcolor>white</textcolor>
            <shadowcolor>black</shadowcolor>
            <visible>SubString(ListItem.DBID,$PARAM[ordert],Right) + Container.Content(albums)</visible>
            <font>$PARAM[fontt]</font>
            <label>$INFO[Window(Home).Property(SkinHelper.ListItem.Tracks.Formatted2)][CR][CR]      $LOCALIZE[180]: $INFO[Window(home).Property(Album.Songs.Duration)]</label>
        </control>
    </definition>
</include>

And this is in my view...

Code:
<!--Tracklists-->
<include name="Trackl">
    <param name="ordert">0</param>
    <param name="fontt">bcd0</param>
</include>
<include name="Trackl">
    <param name="ordert">1</param>
    <param name="fontt">bcd1</param>
</include>
<include name="Trackl">
    <param name="ordert">2</param>
    <param name="fontt">bcd2</param>
</include>
<include name="Trackl">
    <param name="ordert">3</param>
    <param name="fontt">bcd3</param>
</include>
<include name="Trackl">
    <param name="ordert">4</param>
    <param name="fontt">bcd4</param>
</include>
<include name="Trackl">
    <param name="ordert">5</param>
    <param name="fontt">bcd5</param>
</include>
<include name="Trackl">
    <param name="ordert">6</param>
    <param name="fontt">bcd6</param>
</include>
<include name="Trackl">
    <param name="ordert">7</param>
    <param name="fontt">bcd7</param>
</include>
<include name="Trackl">
    <param name="ordert">8</param>
    <param name="fontt">bcd8</param>
</include>
<include name="Trackl">
    <param name="ordert">9</param>
    <param name="fontt">bcd9</param>
</include>

I'm thinking it has something to do with the parameters. I'd appreciate it if someone can point me in the right direction here. Thanks!
Reply
#2
right direction -> http://forum.kodi.tv/showthread.php?tid=...pid2300137
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
@ronie

That did it! Thank you sir!
Reply

Logout Mark Read Team Forum Stats Members Help
Updating Music View for Krypton0