background loading help
#1
hi

the minimeedia skin uses the following to load up 5 images.

How can I change this code to enable background loading of the thumbs?


Code:
<control type="image">
              <posx>16</posx>
              <posy>0</posy>
              <width>119</width>
              <height>240</height>
              <info>ListItem(-1).Icon</info>
              <texture diffuse="Grey.png"/>
              <include>ListViewThumb</include>
              <animation effect="zoom" time="300" start="0,0,119,240" end="80,-26,145,292">Hidden</animation>
              <visible>Container.OnPrevious</visible>
            </control>

I think this is where stuff should be changed..

Code:
<info>ListItem(-1).Icon</info>
              <texture diffuse="Grey.png"/>

but I cant find any other skins that use (-1) and (-2) to get the previous two thumbs is this the best way to do it? I am trying to mod minmeida to increase scrolling fps..
Reply
#2
add background="true" to the texture tag ie <texture background="true">
Reply
#3
Rocky5 Wrote:add background="true" to the texture tag ie <texture background="true">

surely.. its more involved than that.. :-) thanks
Reply
#4
I'm gonna go ahead and bump this, not that he didn't get his answer, but because i'm about to flip my floppers off in a serious ADD-attack.

My problem is that i don't know where to input those lines, where the flonkers is the file? What file? The file where i add background="true" to get smoother scrolling with thumbs and/or fanart.

GDI i'm pi**ed off right now!

Thanks for your help and understanding! Have a nice weekend!

//D.K
Reply
#5
Thekay Wrote:I'm gonna go ahead and bump this, not that he didn't get his answer, but because i'm about to flip my floppers off in a serious ADD-attack.

My problem is that i don't know where to input those lines, where the flonkers is the file? What file? The file where i add background="true" to get smoother scrolling with thumbs and/or fanart.

GDI i'm pi**ed off right now!

Thanks for your help and understanding! Have a nice weekend!

//D.K

it's not just a single setting in some file.
you'll have to modify the xml files of the skin you're using.

background="true" has to be specified for each and every thumb/fanart image
you want to load in the background.

in general, the code would be:
Code:
<control type="image">
    ..
    <texture background="true">foo.jpg</texture>
</control>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#6
ronie Wrote:it's not just a single setting in some file.
you'll have to modify the xml files of the skin you're using.

background="true" has to be specified for each and every thumb/fanart image
you want to load in the background.

in general, the code would be:
Code:
<control type="image">
    ..
    <texture background="true">foo.jpg</texture>
</control>

Thank you Ronie!

Im using back-row and want to load the movie cover thumbs so that it runs smoother. How would one do that? Just point me to the right file and im sure i can figure it out Smile
Reply
#7
I think you'll find that it already uses it.
Reply
#8
Thekay Wrote:Thank you Ronie!

Im using back-row and want to load the movie cover thumbs so that it runs smoother. How would one do that? Just point me to the right file and im sure i can figure it out Smile

my guess would be Common Video Library Views.xml,
but best ask for help in the backrow forum to make sure.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#9
If you want to speed things up then use DDS for textures -

http://forum.xbmc.org/showthread.php?tid=59115
Reply

Logout Mark Read Team Forum Stats Members Help
background loading help0