On Sat, Mar 13, 2010 at 10:47 PM, Keith Reinfeld
<[email protected]>wrote:

> This would be the most straight forward means (given the context):
>
> private function onMouseOverHandler(e:MouseEvent):void{
>        e.currentTarget.getChildAt(0).backgroundColor = 0x97F9EC;
> }
>
> private function onMouseOutHandler(e:MouseEvent):void{
>        e.currentTarget.getChildAt(0).backgroundColor = 0x0E778A;
> }
>
> private function onPressHandler(e:MouseEvent):void{
>        e.currentTarget.getChildAt(0).backgroundColor = 0xFFFFFF;
> }
>
> private function onMouseUpHandler(e:MouseEvent):void{
>        e.currentTarget.getChildAt(0).backgroundColor = 0x0E778A;
>        // Navigate.to(e.currentTarget.linkURL);
> }
>

Thank you for helping me learn how this is done. That worked well with a few
minor modifications.
Susan
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to