used extra fanart !
#1
Question 
Hello

A small question, again Smile

Into Refocus Jeroen coded in fanart widget background with fanart only

it uses script.grab.fanart to add slideshow in background with logo on the fanart (super Smile, but I want add the extra Fanart has this slideshow, but I not see the extra fanarts appear. I do not understand!

this how i code extra fanart add !

Code:
<include name="global_Background">
        <control type="group">
            <include>transition_Background</include>
            <control type="image">
                <include>screen_Dimensions</include>
                <include>toggle_Menu</include>
                <texture background="true">$VAR[global_Background]</texture>
                <visible>!Skin.HasSetting(fanart.global) + IsEmpty(ListItem.Property(Fanart_Image)) + !Skin.HasSetting(fanart.extra) + ![Player.HasVideo + Skin.HasSetting(backgroundvideo.global)]</visible>
                <fadetime>fadetime_Fanart</fadetime>
                </control>
            <control type="image">
                <include>screen_Dimensions</include>
                <include>toggle_Menu</include>
                <texture background="true">$INFO[ListItem.Property(Fanart_Image)]</texture>
                <visible>!Skin.HasSetting(fanart.global) + !IsEmpty(ListItem.Property(Fanart_Image)) + !Skin.HasSetting(fanart.extra) + ![Player.HasVideo + Skin.HasSetting(backgroundvideo.global)] + !Control.IsVisible(531)</visible>
                <visible>!Control.IsVisible(596)</visible>
                <include>fadeinout</include>                
                <fadetime>fadetime_Fanart</fadetime>
            </control>
            <!--use the fanart image of the first real item in the list as a fallback for the "parent folder" entry. seasons and episodes level only.-->
            <control type="image">
                <include>screen_Dimensions</include>
                <include>toggle_Menu</include>
                <texture background="true">$INFO[Container().ListItem(1).Property(Fanart_Image)]</texture>
                <visible>StringCompare(Listitem.Icon,DefaultFolderBack.png) + [Container.Content(seasons) | Container.Content(episodes)] + !Skin.HasSetting(fanart.global) + !Skin.HasSetting(fanart.extra) + ![Player.HasVideo + Skin.HasSetting(backgroundvideo.global)] + !Control.IsVisible(531)</visible>
                <fadetime>fadetime_Fanart</fadetime>
            </control>
Reply

Logout Mark Read Team Forum Stats Members Help
used extra fanart !0