Friday, May 10, 2013
AS3 Mouse Events
| Mouse Events | Keterangan | Type |
|---|---|---|
| CLICK | detect mouse clicks. | CLICK : String = "click" MouseEvent |
| DOUBLE_CLICK | detect double clicks. | DOUBLE_CLICK : String = "doubleClick" MouseEvent |
| MOUSE_DOWN | Checks when mouse is pressed down. | MOUSE_DOWN : String = "mouseDown" MouseEvent |
| MOUSE_LEAVE | Monitors when the mouse leaves the stage. | MOUSE_LEAVE : String = "mouseLeave" Event |
| MOUSE_MOVE | Monitors when the mouse moves. | MOUSE_MOVE : String = "mouseMove" |
| MOUSE_OUT | Monitors when the mouse moves out of the attached to object of the event. | MOUSE_OUT : String = "mouseOut" |
| MOUSE_OVER | Monitors when the mouse moves over the attached to object of the event. | MOUSE_OVER : String = "mouseOver" |
| MOUSE_UP | Monitors when the mouse moves up the attached to object of the event from a click. | MOUSE_UP : String = "mouseUp" |
| MOUSE_WHEEL | Monitors when the mouse wheel moves, detect the positive or negative delta property for distance and direction moved. | MOUSE_WHEEL : String = "mouseWheel" |
Subscribe to:
Post Comments (Atom)
