What is the difference between MouseEvent.CLICK and

MouseEvent.MOUSE_DOWN?

What will be an ideal response?

MouseEvent.CLICK is broadcasted when the mouse is over an object and
the left mouse button is pressed and released. MouseEvent.MOUSE_DOWN is
broadcasted when the mouse button is pressed down, before the button
is released.

Computer Science & Information Technology

You might also like to view...

What does the following statement do? type def int one D Array[20];

A) It creates an array of 20 integers. B) It makes one D Array a copy of another 20-integer array. C) It makes one D Array an alias for a data type that holds 20 integers. D) It creates a one-dimensional integer array with all elements initialized to 20. E) It does none of the above.

Computer Science & Information Technology

Elements added to an ordered list must support which interface?

What will be an ideal response?

Computer Science & Information Technology