Friday, May 10, 2013

AS3 Mouse Events

AS3 Mouse Events
Mouse EventsKeteranganType
CLICKdetect mouse clicks.CLICK : String = "click" MouseEvent
DOUBLE_CLICKdetect double clicks.DOUBLE_CLICK : String = "doubleClick" MouseEvent
MOUSE_DOWNChecks when mouse is pressed down.MOUSE_DOWN : String = "mouseDown" MouseEvent
MOUSE_LEAVEMonitors when the mouse leaves the stage.MOUSE_LEAVE : String = "mouseLeave" Event
MOUSE_MOVEMonitors when the mouse moves.MOUSE_MOVE : String = "mouseMove"
MOUSE_OUTMonitors when the mouse moves out of the attached to object of the event.MOUSE_OUT : String = "mouseOut"
MOUSE_OVERMonitors when the mouse moves over the attached to object of the event.MOUSE_OVER : String = "mouseOver"
MOUSE_UPMonitors when the mouse moves up the attached to object of the event from a click.MOUSE_UP : String = "mouseUp"
MOUSE_WHEELMonitors when the mouse wheel moves, detect the positive or negative delta property for distance and direction moved.MOUSE_WHEEL : String = "mouseWheel"

close