I've got a List being populated by XML data.
One of the returned items is c_schedulestatusid which is either -1, 0, or 1
I need to set the backgroundColor based on the different values
c_schedulestatusid
I know about the
<mx:HBox width="100%" height="20"
backgroundColor="{data.c_schedulestatusid == 1 ? 0x00FF00 :
0xFF0000}">
However that wont work here because it's not either or, it's one of 3...

Reply via email to