Kodi Community Forum

Full Version: Automatic views for 1 channel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
could someone be so kind and list all the view numbers for quartz 3 skin thanks
For video?
yeah

like big icons = 538
fanart 1 = ??
<views>50,51,52,54,501,53,502,55,56,57,58,59,500,510</views>

- Open up View_Videos.xml
- Find-> id="51"
- Locate-> <viewtype label="537">Big List 51</viewtype>

Thus view 51 has label"537" = "Big list"
ah brilliant thanks so much

just a quick one with the new quartz update does it now show a progress bar of video downloaded so far

e.i the buffer
It shows it if video is buffering. It hides it when buffer is full. If you want it all the time, open up DialogSeekbar.xml, locate

Code:
<control type="progress" description="Buffer Bar">
        <posx>200</posx>
        <posy>4</posy>
        <width>924</width>
        <height>16</height>
        <texturebg border="8">VideoOSD/VideoProgressBG.png</texturebg>
        <midtexture border="0,8,0,8">VideoOSD/BufferMidd.png</midtexture>
        <lefttexture border="6,8,0,8">VideoOSD/BufferLeft.png</lefttexture>
        <righttexture border="0,8,16,8">VideoOSD/BufferRight.png</righttexture>
        <info>Player.CacheLevel</info>
        <visible>Player.Caching</visible>
      </control>

and delete line

Code:
<visible>Player.Caching</visible>
thanks again your a star all sorted now

cause i set my advanced buffer to "0" i like downloading the whole thing and i like seeing how far i have got.........

Run into a problem at work I was testing this and I don't have a 0 advancedsetting.xml buffer so it worked all ok at home though I do have 0 buffer set up so info player.cache level shows as full rather than what I have actually downloaded

Any help would be great
Well my guess is that setting it to zero disables buffer so there is nothing to show. I'm not aware of a control that would show download progress. You are better asking devs about this.
thanks for your help pecinko i managed to fix it i used this and now can see the progress cache as its downloading

Code:
<control type="progress" description="Buffer Bar">
        <posx>200</posx>
        <posy>4</posy>
        <width>924</width>
        <height>16</height>
        <texturebg border="8">VideoOSD/VideoProgressBG.png</texturebg>
        <midtexture border="0,8,0,8">VideoOSD/BufferMidd.png</midtexture>
        <lefttexture border="6,8,0,8">VideoOSD/BufferLeft.png</lefttexture>
        <righttexture border="0,8,16,8">VideoOSD/BufferRight.png</righttexture>
        <info>Player.ProgressCache</info>
      </control>