window skin
#1
Wink 
hello everyone i need your help !!
i want a simple add-on programe that use a simple skin .
the skin have a window xml that window contain a button when you click at we can show a text Huh
Reply
#2
i'm not sure what your exact question is,
are you looking for something like this?

python code:
Code:
self.getControl( 100 ).setVisible( False )

def onClick( self, controlId ):
    if controlId == 101:
        self.getControl( 100 ).setVisible( True )

window xml:
Code:
<control type="textbox" id="100>
    ...
</control>
<control type="button" id="101">
    ...
</control>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply

Logout Mark Read Team Forum Stats Members Help
window skin0