WindowXml Controllist- ListItem.Icon not displayed
#1
Hey,...

here is the situation,...

i work with a WindowXML,...
i have ControlList

i populate it like this,...

Code:
self.getControl(88850).addItem(xbmcgui.ListItem(idevicesnbr, ' ', 'iconImage=special://home/addons/fooaddon/resources/DeviceType/foo.png'))

in the skin side i have a ControlImage in the ControlList

Code:
<control type="image">
    <posx>190</posx>
    <posy>0</posy>
        <width>30</width>
    <height>40</height>
    <texture>$INFO[ListItem.Icon]</texture>
    <visible>true</visible>
</control>

But for the image nothing is displayed,... Confused

when i put this

Code:
<control type="image">
    <posx>190</posx>
    <posy>0</posy>
        <width>30</width>
    <height>40</height>
    <texture>special://home/addons/fooaddon/resources/DeviceType/foo.png</texture>
    <visible>true</visible>
</control>

the image is displayed,...

any solution for this problem,....Huh
Reply
#2
...ok

it's work Now,....Wink

with this code

Code:
self.getControl(88850).addItem(xbmcgui.ListItem(idevicesnbr, ' ', 'special://home/addons/fooaddon/resources/DeviceType/foo.png'))

rem: without iconImage=....
Reply

Logout Mark Read Team Forum Stats Members Help
WindowXml Controllist- ListItem.Icon not displayed0