vote up 0 vote down star

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

flag

3 Answers

vote up 0 vote down

look at http://greenethumb.com/article/24/double-click-event-in-as2

link|flag
vote up 0 vote down

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

link|flag
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
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.