Reputation: 2948
Trying to set the up and down state icons of a Flex Combobox to images. I see the property for changing the color of the icon, but no property to skin it. How can I do this?
Upvotes: 0
Views: 1112
Reputation: 14286
The "properties" are actually styles on ComboBase
: upSkin
, downSkin
, overSkin
, disabledSkin
.
The default is ComboBoxArrowSkin
--take a look at the source code to get more details about overriding or customizing it.
Upvotes: 1