Kodi Community Forum
Season view not repeating - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+----- Thread: Season view not repeating (/showthread.php?tid=104096)



Season view not repeating - Gumshoe - 2011-06-23

Hi everybody and thanxs for the excellent Transparency skin!
I´ve tried to find the answer to this question but haven´t really found anything but a mod to transparancy that had a dead link Sad

Q. Is it possibly to set the skin (or xbmc) to NOT repeat views?
For example Season 1-> ends at the last season so you must go back (left) to lower seasons?

Tnxs in advance all great people!

/Gumshoe


- ronie - 2011-06-23

only by hacking up the skin xml code.


Season view not repeating - Gumshoe - 2011-06-23

Any help with that? Smile


- ronie - 2011-06-23

every list and/or panel has an id.
also, every list/panel has a <onup> and a <ondown> definition.


for example, the fanartview has some code like this:
Code:
<control type="list id="50">
    ....
    <onup>50</onup>
    <ondown>50</ondown>

this will cause the list to wrap when you reach the top or bottom of the list.

now, if you set <onup> and <ondown> to some invalid/unused id, the list won't wrap anymore.


- Gumshoe - 2011-07-04

Thanks very much need more help though.
I dont understand how I do it on;
fanartview and Iconview, which I very much like.

The second problem with these views of course is that they wrap the covers around. So even if it stops at the end you´ll still see the last/first coverart next to it.
Im not enough of a programmer to solve this in the xmlcode Sad
Maybe someone here (and theres probably many) can give me some help or a solution.

Many thnx for xbmc,transparancy and xbmccommunity members.
/Patrik


- ronie - 2011-07-04

Gumshoe Wrote:Thanks very much need more help though.
I dont understand how I do it on;
fanartview and Iconview, which I very much like.

just look up the code i posted above in View-Fanart.xml,
there will be several of them in that file,
and change all of them to:
Code:
<control type="list id="50">
    ....
    <onup>789</onup>
    <ondown>789</ondown>

Gumshoe Wrote:The second problem with these views of course is that they wrap the covers around. So even if it stops at the end you´ll still see the last/first coverart next to it.
Im not enough of a programmer to solve this in the xmlcode Sad
Maybe someone here (and theres probably many) can give me some help or a solution.

that one is easy, in View-Icons.xml, change these lines:
<control type="wraplist" id="57">
<control type="wraplist" id="56">

to:
<control type="fixedlist" id="57">
<control type="fixedlist" id="56">