--- In [email protected], "byte.sensei" <byte.sen...@...> wrote:
>
> Flex seems to be sporadic at changing the cursor to a link/hand cursor when
> rolled over components that allow clicks/linking. I can't find any properties
> that make it easy to change the cursor on roll-over of an image that is a
> link, for example.
>
> I don't need custom cursors or anything, I'm just interested in changing the
> default cursor into a hand/link cursor when the mouse is over a particular UI
> component. What's the best way to accomplish this?
>
I used something like this:
_cellLabel.useHandCursor = false;
_cellLabel.buttonMode = false;
_cellLabel.mouseChildren = true;