0
votes

I'm using the <s:ComboBox> flex component which I suspect is very similar to the mx one <mx:ComboBox>

What I'm trying to do is listen to the event of the mouse moving between the items of the list. There's a change event, but it kicks in only when the item is clicked/selected from the list.

What event would I need to listen for when items are just hovered over. I tried finding over and hover but couldn't find something to that effect.

2

2 Answers

0
votes

No on hover event, but there is a mouseOver event that should be able to do what you want.

0
votes

Try this...

CMM_name.dropdown.addEventListener(MouseEvent.MOUSE_OVER, func_name);

function func_name(e:Event){
//DO SOmthing
}