On 10/28/05, Tom Fitzpatrick <[EMAIL PROTECTED]> wrote:
> Yes, I found out that mouseEnabled is Flex 2 only. Yes, I'm handling the
> mouseOver and mouseOut events to show and hide an "over" graphic.

This seems to work for me:

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml";
  xmlns="*" width="80%" height="80%">
  <mx:Canvas id="c" mouseOver="c.setStyle('backgroundColor', 'yellow')"
    mouseOut="c.setStyle('backgroundColor', 'red')"
    backgroundColor="red" width="200" height="200">
    <mx:Label text="This is some text..." />
  </mx:Canvas>
</mx:Application>

I think you need to be more specific, perhaps with a standalone
example showing the problem.


------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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:
    http://docs.yahoo.com/info/terms/
 


Reply via email to