you can check double click yourself:
the sample code

var tempT:Number = 0;
addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);

function mouseDownHandler(e:MouseEvent):void {
        var clickTime:Number = new Date().getTime();
        if (clickTime - tempT < 300) {
                //double click
        }else {
                //single click
        }
        tempT = clickTime;
}

enjoy it! :)

On 1月22日, 下午1时28分, Mudassir <mudassir.m...@gmail.com> wrote:
> Hi Friends,
>
> Im using both MOUSE_DOWN, DOUBLE_CLICK EventListener.
> The MOUSE_DOWN EventListener is not letting to call DOUBLE_CLICK
> EventListener
>
> The MOUSE_DOWN EventListener im using for drag n drop
> In DOUBLE_CLICK EventListener i want to show a popup..
> Im not able to show the popup
>
> plz help.. thx in advance
>
> ~Mohd Mudassit

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to