Infolabels, textbox & visibility
#1
I'm not sure if it can be done or I'm just completely missing something, but is there a way to have a single textbox control show various infolabels based on the current container? So basically I'm trying to figure out how I can add the multiple labels here instead of creating another textbox control that is completely the same except for the label.
Code:
            
<control type="textbox">
    <posx>350</posx>
    <posy>550</posy>
    <width>500</width>
    <height>145</height>
    <font>font-15</font>
    <textcolor>white</textcolor>
    <scroll>true</scroll>
    <align>justify</align>
    <pagecontrol>1</pagecontrol>
         <autoscroll delay="6000" time="2000" repeat="10000"></autoscroll>
[b]    <label>$INFO[ListItem.Property(Artist_Description)]</label>
        <label>$INFO[ListItem.Property(Album_Description)]</label>[/b]
    <visible>Control.IsVisible(599)</visible>
</control>
Reply
#2
Nope, separate textboxes.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


Image
Reply
#3
Thanks Jonathan. You should just setup an autoresponder for my posts with "nope" haha Laugh
Reply
#4
Aenima99x Wrote:I'm not sure if it can be done or I'm just completely missing something, but is there a way to have a single textbox control show various infolabels based on the current container? So basically I'm trying to figure out how I can add the multiple labels here instead of creating another textbox control that is completely the same except for the label.
Code:
<control type="textbox">
    <posx>350</posx>
    <posy>550</posy>
    <width>500</width>
    <height>145</height>
    <font>font-15</font>
    <textcolor>white</textcolor>
    <scroll>true</scroll>
    <align>justify</align>
    <pagecontrol>1</pagecontrol>
         <autoscroll delay="6000" time="2000" repeat="10000"></autoscroll>
[b]    <label>$INFO
[ListItem.Property(Artist_Description)][CR]$INFO
[ListItem.Property(Album_Description)]</label>[/b]
    <visible>Control.IsVisible(599)</visible>
</control>

|-<:)
Reply

Logout Mark Read Team Forum Stats Members Help
Infolabels, textbox & visibility0