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
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
only by hacking up the skin xml code.
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.
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

Maybe someone here (and theres probably many) can give me some help or a solution.
Many thnx for xbmc,transparancy and xbmccommunity members.
/Patrik
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 
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">