views:

2722

answers:

3

Is there a way to detect mouse double-click on a button object using ActionScript 2.0?

A: 

or maybe better still http://proto.layer51.com/l.aspx?p=18

adam
better still would be to use AS3 as the event is handled by the core packages (MouseEvent.DOUBLE_CLICK)
adam
+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