JF, Make sure that you're using the itemRollOver event; not rollOver.
Can't think of what you're wanting to do here, but this will get you to
the data. From there you can get the object from the dataProvider if
you needed to.
<mx:List itemRollOver="onItemRollOver(event)"/>
private function onItemRollOver(event:ListEvent):void
{
// use event.itemRenderer.data here;
}
-TH
--- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> Event.itemRenderer.data
>
>
>
> ________________________________
>
> From: [email protected] [mailto:[EMAIL PROTECTED]
On
> Behalf Of jmfillman
> Sent: Wednesday, June 04, 2008 12:11 PM
> To: [email protected]
> Subject: [flexcoders] List rollOver event item
>
>
>
> How do I identify the item in the list that the mouse rollOver event
> triggers? The selectedItem and selectedIndex fields won't contain the
> correct value, so what do I use?
>
> Thanks...JF
>