ControlList and selectColor not working?
#1
Greetings,

I selectedColor from a ControlList does not appear to change the color when selected.

paired_list = xbmcgui.ControlList(600, 150, 500, 900,textColor='0xffffffff',font='font24_title', selectedColor="0x00000000")

When selected, the color doesn't change. (selected by clicking on it).

Alternatively, I tried this:

if controlID == paired_list:
item=paired_list.getSelectedItem()
item.setProperty('textColor', '0x00000000')
self.message('You selected: ' + item.getLabel())

Is this another situation of confusion between selected and focused?
Reply
#2
According to my experiments with various xbmcgui classes, selectedColor property of ControlList indeed does not work.
Reply
#3
Alright.. I will stop chasing that Smile Thanks!
Reply

Logout Mark Read Team Forum Stats Members Help
ControlList and selectColor not working?0