views:

220

answers:

1

Hi. Flex is so tricky to style.

I have a combobox, when I arrow up and down over a select it has a background color, how do I change this color. This should be easy.

+1  A: 

Try this style

ComboBox { dropdownStyleName: "myComboBoxDropDowns"; }

.myComboBoxDropDowns { rollOverColor: #996699; selectionColor: #993366; }

Manoj M