Kodi Community Forum

Full Version: Fanart fallback problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to use custom image as fanart fallback?

Code:
<texture fallback="Skin.String(Background)" background="true">$INFO[ListItem.Property(Fanart_Image)]</texture>

does not seam to work and neither is

Code:
<texture fallback="$INFO[Skin.String(Background)]" background="true">$INFO[ListItem.Property(Fanart_Image)]</texture>

if I'm not making a syntax error here.

$INFO[Skin.String(Background)] defines what background, from skin supplied ones, has user chosen to use.
nope, you can't fallback to $INFO labels.
to workaround this issue, create two image controls.

one for the fanart (without 'fallback=')
and one for the user selected image and use
<visible>IsEmpty(ListItem.Property(Fanart_Image))</visible>
for that one.
Thanks.