Colordiffuse and controls with multiple textures
#1
I like to use a lot of greyscale textures and then use colordiffuse on them for easily configured color.xml's.
But when using controls with multiple textures (focus/nofocus/etc), since colordiffuse is tag instead of texture attribute.

So example of what id like to achieve:
Code:
<control type="button">
    ...
    <texturefocus colordiffuse="FocusColor">button.png</texturefocus>
    <texturenofocus colordiffuse="BasicColor">button.png</texturenofocus>
    <label>Button</label>
    <textcolor>FFFFFFFF</textcolor>
    <disabledcolor>FFFFFFFF</disabledcolor>
    <onclick>do.something</onclick>
    ...
</control>

Can't come up with any workarounds or alternative solutions except themes, which i wouldn't like to use.
Does anyone have any ideas?

Edit. Most times I can place "basic" image behind control and leave nofocus texture empty, but with scrolling GroupList that's not an option.
Reply
#2
(2012-12-02, 13:30)m_K_o Wrote: Edit. Most times I can place "basic" image behind control and leave nofocus texture empty, but with scrolling GroupList that's not an option.

Should work if you put both controls in a group.

PHP Code:
<control type="grouplist">
    <
control type="group">
        <
control type="image">
        </
control>
        <
control type="button">
        </
control>
    </
control>
</
control
Image
Reply
#3
has been asked and discussed here: http://forum.xbmc.org/showthread.php?tid...pid1183793 but so far there's nothing back from there...

i'm still waiting for this, but i guess it has a low priority. perhaps after frodo, because that would be a great addition for all skinners...
Reply

Logout Mark Read Team Forum Stats Members Help
Colordiffuse and controls with multiple textures0