Kodi Community Forum
Need your help for " < Onleft> & <onright> - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: Need your help for " < Onleft> & <onright> (/showthread.php?tid=201949)



Need your help for " < Onleft> & <onright> - Reynald - 2014-08-12

Here's a snippet of my mode.
I try to locate intowiki, how to create a double right click or double click left !
one click right active scrollbar .
two clicks to the right opens menu options views.
but I can not find it in the wiki or other skin examples for do alone after. can you refer me? give me a direction?
thx very much Wink


PHP Code:
<control type="list" id="50">
            <
viewtype label="535">list</viewtype>     
            <
left>30</left>
            <
top>90</top>
            <
width>620</width>
            <
height>612</height>
            <
onup>50</onup>
            <
ondown>50</ondown>
            <
onleft>6000</onleft>
            <
onright condition="!Window.IsActive(videoplaylist) | [Window.IsActive(videoplaylist) + !Player.HasVideo]">70</onright>
            <
onright condition="Window.IsActive(videoplaylist) + Player.HasVideo">99</onright>
            <
pagecontrol>70</pagecontrol>
            <
preloaditems>2</preloaditems>
            <include>
toggle_Menu</include>
            <include>
global_ListScroll</include>
            <include>
transition_Info</include>
            <include>
transition_Content</include>
            <
itemlayout condition="IsEmpty(Container.FolderPath)" width="620" height="40">
                <
control type="label">
                    <
left>15</left>
                    <
width>595</width>
                    <
label>$INFO[ListItem.Label]</label>
                    <include>
container_Single</include>
                </
control



RE: Need your help for " < Onleft> & <onright> - sualfred - 2014-08-12

Not possible.
You have to create another <onright> on the scrollbar to focuse your additonal right menu.


RE: Need your help for " < Onleft> & <onright> - Reynald - 2014-08-12

Ok thx Smile