[flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Paul Evans
In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60. Just tried listening for MouseEvent.DOUBLE_CLICK on a MovieClip using Flash 9 preview and found that the event never seems to fire. I also compiled

RE: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Joan Lafferty
, November 02, 2006 8:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60. Just tried listening

Re: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Michael Schmalle
Hi,Did you set the property doubleClickEnabled to true ?Peace, MikeOn 11/2/06, Paul Evans [EMAIL PROTECTED] wrote: In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60.

Re: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Igor Costa
just do thatmyMC.doubleClickEnabled = true;Try that.On 11/2/06, Paul Evans [EMAIL PROTECTED] wrote: In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60. Just tried

RE: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something

2006-11-02 Thread Thomas W. Gonzalez
02, 2006 8:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something In my first week of ActionScript 3 development. Working on Mac OS X with Flex 2 Builder Beta and Flash 9 Alpha Preview, Player: 9,0,18,60. Just tried listening

Re: [flexcoders] MouseEvent.DOUBLE_CLICK am I missing something - solved

2006-11-02 Thread Paul Evans
Thanks to all responders. On 2 Nov 2006, at 18:03, Igor Costa wrote: myMC.doubleClickEnabled = true; Yep that did it. doubleClickEnabled being a property of InteractiveObject, from which MovieClip inherits. I guess it would have helped if this special case had been mentioned in the docs