Hey Alex, thanks for trying to help me out of this :) You may see the events of "doubleClickEvents" here:
http://livedocs.adobe.com/flex/201/langref/mx/controls/ComboBox.html#propertySummary You could double click the ComboBox and you see ( "show" and "hide" ) the drop down list. I am going to disable double click event on ComboBox components. Allows single click only. Thanks ========== Sample Code ======== <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="305" height="231"> <mx:ComboBox x="90" y="81" doubleClickEnabled="false" mouseEnabled="true"/> </mx:Application> ============================== --- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Where do you see the doubleclick event? I don't think ComboBox should > be dispatching one. What is the event.target? > > > > ________________________________ > > From: [email protected] [mailto:[EMAIL PROTECTED] On > Behalf Of flexawesome > Sent: Thursday, December 06, 2007 2:12 PM > To: [email protected] > Subject: [flexcoders] Re: How to disble double click in ComboBo? > > > > impossible? thanks a lot > > --- In [email protected] <mailto:flexcoders%40yahoogroups.com> > , "flexawesome" <flexawesome@> wrote: > > > > > > any suggestions? thanks > > > > --- In [email protected] > <mailto:flexcoders%40yahoogroups.com> , "flexawesome" <flexawesome@> > wrote: > > > > > > > > > Hi, I am working on ComboBox components and like to disable double > > > click event once click the little scrub( arrow icons ) > > > > > > The code doesn't work for me. Is there any way to reach that? > > > > > > Thanks > > > > > > ========= > > > > > > <?xml version="1.0" encoding="utf-8"?> > > > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml > <http://www.adobe.com/2006/mxml> " > > > layout="absolute" width="305" height="231"> > > > > > > <mx:ComboBox x="90" y="81" doubleClickEnabled="false" > > > mouseEnabled="true"></mx:ComboBox> > > > > > > </mx:Application> > > > > > >

