Flex DropDownList Hightlight
I am trying to Skin a "hightlight" of a DropDownList item. I can not find any documentation on changing the skin of the items hightlight / rollover skin. Does anyone have any idea on how to do th开发者_C百科is?
Thanks! Michael
You should create a custom item renderer (see documentation) and set autoDrawBackground
to false
for it. Then use states as in a link above and define your graphics for hovered
state.
P.S. The valid states for item renderer are: selected
, hovered
, normal
.
精彩评论