Kodi Community Forum

Full Version: request: onclick for scrollbar possible?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Would be a help for me if not others, thanks Big Grin
Just out of interest: what do you intend to do with it?
More annoying is that there is no onfocus/onunfocus for scrollbar.

You could fake it by having a fake hidden button that has
Code:
<onleft>Control.Move(LISTID,-5)</onleft>
<onright>Control.Move(LISTID,5)</onright>
<onclick>whatever</onclick>
Change the number it moves by with however many items are visible in the list.

And then use a fade animation on your scrollbar that shows it when the fake button is focused.
(2017-03-18, 13:43)Jeroen Wrote: [ -> ]Just out of interest: what do you intend to do with it?

I focus on it first entry to dialogvideoinfo (plot scrollbar), so would be nice to have a default click while on it to play item.
Would also be good to click on when moving through lists with scrollbar, to select the item it lands on, rather then move off it first.
Nm.