Kodi Community Forum

Full Version: Show label if logo is empty
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everybody!

I'm new on skinnig, so someone can help me on this?

I have this logo:

            <control type="image">
                <left>0</left>
                <top>15</top>
                <width>330</width>
                <height>231</height>
                <texture >$INFO[ListItem.Art(clearlogo)]</texture>
            </control>

and this label:

           <control type="label" id="78600">
                <left>0</left>
                <top>15</top>
                <width>330</width>
                <height>231</height>
                <label>$INFO[ListItem.Label]</label>
            </control>

I want to show the label when logo is empty, is that possible?

thanks in advance
(2020-05-26, 13:58)sagrath Wrote: [ -> ]Hello everybody!

I'm new on skinnig, so someone can help me on this?

I have this logo:

            <control type="image">
                <left>0</left>
                <top>15</top>
                <width>330</width>
                <height>231</height>
                <texture >$INFO[ListItem.Art(clearlogo)]</texture>
            </control>

and this label:

           <control type="label" id="78600">
                <left>0</left>
                <top>15</top>
                <width>330</width>
                <height>231</height>
                <label>$INFO[ListItem.Label]</label>
<visible>String.IsEmpty(Player.Art(clearlogo)</visible>
            </control>

I want to show the label when logo is empty, is that possible?

thanks in advance

 <visible>String.IsEmpty(Player.Art(tvshow.clearlogo)</visible>
(2020-05-26, 14:52)the_other_guy Wrote: [ -> ] <visible>String.IsEmpty(Player.Art(tvshow.clearlogo)</visible> 

 THAT'S IT!!!


Many many thanks
it worked!!!!
Thread marked solved.