How can I make scrollbar and buttons located bottom-right navigable by d-pad
#1
Skin: Confluence

How can I make the scrollbar and buttons located bottom-right navigable by d-pad? Xonfluence skin allows that but I consider it a bit heavy and avoid using it, so I 'd like to mod confluence to support that.

xml include file:
Code:
<include name="MainWindowMouseButtons">
<control type="group">
<left>120r</left>
<top>55r</top>
<animation effect="fade" time="200" condition="Window.Previous(Home)">WindowOpen</animation>
<animation effect="fade" time="200" condition="Window.Next(Home)">WindowClose</animation>
<visible>system.getbool(input.enablemouse)</visible>
<control type="button">
<description>Back push button</description>
<left>0</left>
<top>0</top>
<width>45</width>
<height>45</height>
<label>1036</label>
<font>-</font>
<onclick>back</onclick>
<texturefocus border="5">floor_buttonFO.png</texturefocus>
<texturenofocus border="5">floor_button.png</texturenofocus>
<onleft>50</onleft>
<onright>50</onright>
<onup>50</onup>
<ondown>50</ondown>
</control>
<control type="image">
<description>Back Icon</description>
<left>5</left>
<top>5</top>
<width>35</width>
<height>35</height>
<aspectratio>keep</aspectratio>
<texture>icon_back.png</texture>
</control>
<control type="button">
<description>Home push button</description>
<left>55</left>
<top>0</top>
<width>45</width>
<height>45</height>
<label>31003</label>
<font>-</font>
<onclick>ActivateWindow(home)</onclick>
<texturefocus border="5">floor_buttonFO.png</texturefocus>
<texturenofocus border="5">floor_button.png</texturenofocus>
<onleft>50</onleft>
<onright>50</onright>
<onup>50</onup>
<ondown>50</ondown>
</control>
<control type="image">
<description>Home Icon</description>
<left>60</left>
<top>5</top>
<width>35</width>
<height>35</height>
<aspectratio>keep</aspectratio>
<texture>icon_home.png</texture>
</control>
</control>
</include>
Reply
#2
Bottom right of what?
Reply
#3
Bottom right, the buttons that show up on myvideonav and elsewhere, their actions are previous menu and activate window home.
Reply
#4
They're only visible when you have mouse and touchscreen enabled and as such can only be used by them. Keyboard/remote can simply press back/esc. Any scrollbar can be accessed by remote/keyboard though.
Reply
#5
(2018-01-26, 17:38)Hitcher Wrote: They're only visible when you have mouse and touchscreen enabled and as such can only be used by them. Keyboard/remote can simply press back/esc. Any scrollbar can be accessed by remote/keyboard though.
 My mod will simply have these conditionals removed. The reason I need this is for handicapped people and remotes with very few buttons.
Reply

Logout Mark Read Team Forum Stats Members Help
How can I make scrollbar and buttons located bottom-right navigable by d-pad0