up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question
feedback

3 Answers

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.

link|improve this answer
feedback

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

link|improve this answer
better still would be to use AS3 as the event is handled by the core packages (MouseEvent.DOUBLE_CLICK) – adam Dec 2 '08 at 10:56
feedback

Your Answer

 
or
required, but never shown