(2024-09-11, 18:17)newoski Wrote: (2024-09-11, 00:16)realcopacetic Wrote: <ondown>
Thanks! (but I'm a bit confused...)
What ID would I use, since the skin view can be used for Movies, TV and Music?
31003 = Movies
31005 = TV Shows
31002 = Music
What happens now if you get to the bottom of the list and press down? Does it not take you back to the top already?
Each ID would be for a different container. I'm not sure why there are different IDs and containers for different types of content. Judging by the IDs being used, are these widgets?
Anyway, you need to find the container(s) used for the wall view that you want to mod. If you use something like VSCode you can add the skin folder as a project folder, then you'll be able to search across all files. Once you know the id for wall view, search for "[idnumber]" with the ""s. You want to find the container code which will look like:
xml:
<control type="panel" id="12345">
<visible>...</visible>
<width>...</width>
...
<ondown>12345</ondown>
...
</control>
Then you want to add the same ID to <ondown> tag.
It is possible to have multiple ID's using the same piece of code using something called <includes> and parameters.
So you might see it like this instead:
<include name="wall_view_or something_like_that"
<control type="panel" id="$PARAM[id]"
if it looks like that just put whatever is inside the "" marks next to id= as your ondown code I think. e.g. <ondown>$PARAM[id]</ondown>