Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the diffrence in MouseEvent.CLICK & MouseEvent.MOUSE_DOWN on ActionScript 3.0

I'd like to know what is the difference between MouseEvent.CLICK & MouseEvent.MOUSE_DOWN. Because when i use MouseEvent.MOUSE_DOWN for a button to set full-screen view its doesn't work, instead of this MouseEvent.CLICK works. So what was the reason.

like image 630
coderex Avatar asked Oct 21 '10 13:10

coderex


1 Answers

I don't specifically know about ActionScript, but in general a mouse click event consists of a mouse down event, followed by a mouse up.

like image 66
Matt Ball Avatar answered Nov 15 '22 08:11

Matt Ball