Hi flexers,
I have a list control where i want to show a string (thats fine) but a colored square as well.
Imagine i have a "add player" button a text input with a color picker. I want to see the color + player name in the List. How could i do this ?
[Bindable]
public var data:ArrayCollection = new ArrayCollection();
<mx:List id="eqlist" width="100%" dataProvider="{data}" />
data.addItem(fooTxt.text);
This code will only add the text value, should i add a hbox object composed of a colored canvas + text value ?
Thanks,