Flash AS3 – Double Click Not Working
There are 2 secrets to get double click working in AS3. The first one is not really a secret if you read the documentation. The second one had me scratching my head for a few hours. So here they are:
1. set doubleClickEnabled to true
button.doubleClickEnabled = true;
button.addEventListener( MouseEvent.DOUBLE_CLICK, doubleClickHandler );
2. You must set the doubleClickEnabled to any MovieClips inside the Button/MovieClip listening for the double click event. If the MovieClip/Button contains only shapes or text that’s fine, the double click will work without the second step.