Add year next to title in InfoWall view
#1
So I tried to add $INFO[ListItem.Year] in the label section of the file "View_54_InfoWall.xml" file without success, should I look elsewhere?:

xml:

                <control type="textbox">
                    <left>40</left>
                    <top>244</top>
                    <width>242</width>
                    <height>120</height>
                    <font>font27</font>
                    <align>center</align>
                    <aligny>center</aligny>
                    <label>$INFO[ListItem.Year]$INFO[ListItem.Label]</label>
                    <autoscroll time="2000" delay="3000" repeat="5000">$PARAM[focused]</autoscroll>
                    <visible>!ListItem.IsParentFolder</visible>
                </control>
Reply
#2
Yes, you are looking at the wrong section. It's: 

https://github.com/xbmc/xbmc/blob/master...ml#L37-L45

Changing the label to: <label>$INFO[ListItem.Label] ($INFO[ListItem.Year])</label>

will give you something like that: 

Image
Reply
#3
(2020-07-02, 06:44)DaVu Wrote: Yes, you are looking at the wrong section. It's: 

https://github.com/xbmc/xbmc/blob/master...ml#L37-L45

Changing the label to: <label>$INFO[ListItem.Label] ($INFO[ListItem.Year])</label>

Thank thanks a lot, would have never guessed.
Reply

Logout Mark Read Team Forum Stats Members Help
Add year next to title in InfoWall view0