| Package | org.aswing.event |
| Class | public class ClickCountEvent |
| Inheritance | ClickCountEvent AWEvent flash.events.Event |
| Method | Defined by | ||
|---|---|---|---|
|
ClickCountEvent(type:String, count:int)
| ClickCountEvent | ||
|
clone():Event
| ClickCountEvent | ||
|
getCount():int
| ClickCountEvent | ||
| Constant | Defined by | ||
|---|---|---|---|
![]() | ACT : String = "act" [static]
The
AWEvent.ACT constant defines the value of the
type property of the event object for a act event. | AWEvent | |
| CLICK_COUNT : String = "clickCount" [static]
The
ClickCountEvent.CLICK_COUNT constant defines the value of the
type property of the event object for a clickCount event. | ClickCountEvent | ||
![]() | FOCUS_GAINED : String = "focusGained" [static]
The
AWEvent.FOCUS_GAINED constant defines the value of the
type property of the event object for a focusGained event. | AWEvent | |
![]() | FOCUS_LOST : String = "focusLost" [static]
The
AWEvent.FOCUS_LOST constant defines the value of the
type property of the event object for a focusLost event. | AWEvent | |
![]() | HIDDEN : String = "hidden" [static]
The
AWEvent.HIDDEN constant defines the value of the
type property of the event object for a hidden event. | AWEvent | |
![]() | PAINT : String = "paint" [static]
The
AWEvent.PAINT constant defines the value of the
type property of the event object for a paint event. | AWEvent | |
![]() | SHOWN : String = "shown" [static]
The
AWEvent.SHOWN constant defines the value of the
type property of the event object for a shown event. | AWEvent | |
| ClickCountEvent | () | constructor |
public function ClickCountEvent(type:String, count:int)Parameters
type:String |
|
count:int |
| clone | () | method |
public override function clone():Event
Returns
Event |
| getCount | () | method |
public function getCount():int
Returns
int |
| CLICK_COUNT | constant |
public static const CLICK_COUNT:String = "clickCount"
The ClickCountEvent.CLICK_COUNT constant defines the value of the
type property of the event object for a clickCount event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
getCount() | the continuesly clicked count |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
comp.addEventListener() to register an event listener,
comp is the value of the currentTarget. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |