I am really surprised that MM didn't do a better job with this. My
personal feeling is that anything that can be clicked, should by
default, use the hand cursor. Sorry for the rant... So I ended up
creating wrapper classes for clickable items. For instance:

class components.Button extends mx.controls.Button
{
function init():Void
{
super.init();
useHandCursor = true;
}

function onPress():Void
{
super.onPress();
}
}


Hope that helps.

-James


On Mon, 2005-03-14 at 16:29 +0200, Robert Stuttaford wrote:
> Hi flex coders,
> 
> 
> 
> Does anyone know how I can force use of the hand cursor, specifically
> on an Image control? Ideally Iâd love to just go
> instance.useHandCursor = true;
> 
> 
> 
> Do I have to write a derivative and override the relevant mouse
> handlers?
> 
> 
> 
> Thanks!
> 
> Robert
> 
> 
> 
> Yahoo! Groups Sponsor
> ADVERTISEMENT
> click here
> 
> 
> 
> ______________________________________________________________________
> Yahoo! Groups Links
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/flexcoders/
> 
> * To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> 
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
> 




Reply via email to