Is there a way to detect mouse double-click on a button object using ActionScript 2.0?
better still would be to use AS3 as the event is handled by the core packages (MouseEvent.DOUBLE_CLICK)
adam
2008-12-02 10:56:33
+1
A:
To make explicit what the other answers imply, there's no built-in way. You just have to listen for two clicks and decide whether they're close enough together to count as a double, or else use a package that does that, or else use AS3.
fenomas
2008-12-03 01:32:15