2010-05-08, 18:21
I know team XBMC doesn't support XBOX but hopefully arnova takes a peek..
My upcoming skin works pretty well on XBOX but my logo-label fallback doesn't. And I use that type of code alot to make things work automatically instead of having a bunch of skin settings.
Simply put it's:
image 1 id="7500"
image 2 id="7501"
Label fallback="IsEmpty(Control.GetLabel(7500)) + IsEmpty(Control.GetLabel(7501))"
Below is actual code block:
The skin seems to work good but not having that type of label fallback means it's either all logo's or no logo's, there can't be any in between...Thx for any replies.
My upcoming skin works pretty well on XBOX but my logo-label fallback doesn't. And I use that type of code alot to make things work automatically instead of having a bunch of skin settings.
Simply put it's:
image 1 id="7500"
image 2 id="7501"
Label fallback="IsEmpty(Control.GetLabel(7500)) + IsEmpty(Control.GetLabel(7501))"
Below is actual code block:
PHP Code:
<control type="largeimage" id="7018">
<posx>20</posx>
<posy>0</posy>
<width>230</width>
<height>89</height>
<texture>$INFO[ListItem.path]logo.png</texture>
<fadetime>200</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_Viewtype_3dland_Lefttop</include>
<visible></visible>
</control>
<control type="largeimage" id="9018">
<posx>20</posx>
<posy>0</posy>
<width>230</width>
<height>89</height>
<texture>$INFO[ListItem.path]../logo.png</texture>
<fadetime>200</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_Viewtype_3dland_Lefttop</include>
<visible></visible>
</control>
<control type="label">
<posx>20</posx>
<posy>0</posy>
<width>1200</width>
<height>50</height>
<aligny>center</aligny>
<font>Font_Bartowski_Landscape_TV_Title</font>
<textcolor>ff67ffff</textcolor>
<label>[b]$INFO[ListItem.TVShowTitle][/b]</label>
<include>Animation_Viewtype_3dland_Lefttop</include>
<visible>IsEmpty(Control.GetLabel(7018)) + IsEmpty(Control.GetLabel(9018))</visible>
</control>
The skin seems to work good but not having that type of label fallback means it's either all logo's or no logo's, there can't be any in between...Thx for any replies.