Double_click?

I’m trying to use the mouse event DOUBLE_CLICK but it doesn’t seem to work.
the code I’m using is:

addEventListener(MouseEvent.DOUBLE_CLICK,doubleclick);

protected function doubleclick(e:MouseEvent):void {
trace(“doubleclick”);
}

this is targeted at a MovieClip. I don’t have trouble with the other mouse events, only double click.