@
rmrector
I adapted my skin Aeon Tajo to work with your new approach for artworks with fadelabels according to
https://rmrector.github.io/script.artwor...onfreefun/
It works well, only glitch for me was when there was only one image available, in that case the same image kept repeating itself, but there was a small -though noticeable- fade on/off on the image every "x" seconds (when the image was set to change in the fadelabel). Then I started to try a new method and I would like to know your opinion about it; instead of the fadelabel I use this:
xml:
<control type="list" id="9999">
<scrolltime>7000</scrolltime>
<autoscroll>true</autoscroll>
<itemlayout />
<focusedlayout />
<content>
<item>
<label>$INFO[ListItem.Art(fanart)]</label>
<visible>!String.IsEmpty(ListItem.Art(fanart))</visible>
</item>
<item>
<label>$INFO[ListItem.Art(fanart1)]</label>
<visible>!String.IsEmpty(ListItem.Art(fanart1))</visible>
</item>
<item>
<label>$INFO[ListItem.Art(fanart2)]</label>
<visible>!String.IsEmpty(ListItem.Art(fanart2))</visible>
</item>
<item>
<label>$INFO[ListItem.Art(fanart3)]</label>
<visible>!String.IsEmpty(ListItem.Art(fanart3))</visible>
</item>
<item>
<label>$INFO[ListItem.Art(fanart4)]</label>
<visible>!String.IsEmpty(ListItem.Art(fanart4))</visible>
</item>
</content>
</control>
...in MyVideoNav.xml, after that I only need to put an image control like this:
xml:
<control type="image">
<left>1000</left>
<top>100</top>
<width>500</width>
<height>300</height>
<fadetime>250</fadetime>
<aspectratio aligny="bottom" align="center">keep</aspectratio>
<texture background="true">$INFO[Container(9999).ListItem.Label]</texture>
</control>
...in the xml's views to display the rotating fanarts, I don't even need to use a multiimage control and the image keeps steady when there's only one.
It seems to work well, but I don't know whether there could be any downside that I'm not aware of...
Thanks!