2009-09-20, 21:43
I don't get the background loading for images.
From the online manual
My code for showing a fanart background in the videolibrary look like this
From the online manual
Quote:Background loadingBut where to write which images to load in the background?
Images are loaded one at a time in a background worker thread and are shown as soon as xbmc processes them. Has the benefit that images can be loaded into memory before they're visible, resulting in smoother scrolling and transitions.
My code for showing a fanart background in the videolibrary look like this
Code:
<control type="largeimage">
<posx>0</posx>
<posy>0</posy>
<width>720</width>
<height>576</height>
<visible>!IsEmpty(listitem.property(fanart_image))</visible>
<background>true</background>
<texture>$INFO[listitem.property(fanart_image)]</texture>
</control>