| Package | org.aswing.event |
| Class | public class FrameEvent |
| Inheritance | FrameEvent InteractiveEvent AWEvent flash.events.Event |
See also
| Method | Defined by | ||
|---|---|---|---|
|
FrameEvent(type:String, programmatic:Boolean = false)
| FrameEvent | ||
|
clone():Event
| FrameEvent | ||
![]() |
isProgrammatic():Boolean
Returns the programmatic property.
| InteractiveEvent | |
| 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 | |
![]() | 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 | |
| FRAME_ABILITY_CHANGED : String = "frameAbilityChanged" [static]
The
FrameEvent.FRAME_ABILITY_CHANGED constant defines the value of the
type property of the event object for a frameAbilityChanged event. | FrameEvent | ||
| FRAME_CLOSING : String = "frameClosing" [static]
The
FrameEvent.FRAME_CLOSING constant defines the value of the
type property of the event object for a frameClosing event. | FrameEvent | ||
| FRAME_ICONIFIED : String = "frameIconified" [static]
The
FrameEvent.FRAME_ICONIFIED constant defines the value of the
type property of the event object for a frameIconified event. | FrameEvent | ||
| FRAME_MAXIMIZED : String = "frameMaximized" [static]
The
FrameEvent.WINDOW_DEACTIVATED constant defines the value of the
type property of the event object for a frameMaximized event. | FrameEvent | ||
| FRAME_RESTORED : String = "frameRestored" [static]
The
FrameEvent.FRAME_RESTORED constant defines the value of the
type property of the event object for a frameRestored event. | FrameEvent | ||
![]() | 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 | |
![]() | SCROLL_CHANGED : String = "scrollChanged" [static]
The
InteractiveEvent.SCROLL_CHANGED constant defines the value of the
type property of the event object for a scrollChanged event. | InteractiveEvent | |
![]() | SELECTION_CHANGED : String = "selectionChanged" [static]
The
InteractiveEvent.SELECTION_CHANGED constant defines the value of the
type property of the event object for a selectionChanged event. | InteractiveEvent | |
![]() | SHOWN : String = "shown" [static]
The
AWEvent.SHOWN constant defines the value of the
type property of the event object for a shown event. | AWEvent | |
![]() | STATE_CHANGED : String = "stateChanged" [static]
The
InteractiveEvent.STATE_CHANGED constant defines the value of the
type property of the event object for a stateChanged event. | InteractiveEvent | |
![]() | TEXT_CHANGED : String = "textChanged" [static]
The
InteractiveEvent.TEXT_CHANGED constant defines the value of the
type property of the event object for a textChanged event. | InteractiveEvent | |
| FrameEvent | () | constructor |
public function FrameEvent(type:String, programmatic:Boolean = false)Parameters
type:String |
|
programmatic:Boolean (default = false) |
| clone | () | method |
public override function clone():Event
Returns
Event |
| FRAME_ABILITY_CHANGED | constant |
public static const FRAME_ABILITY_CHANGED:String = "frameAbilityChanged"
The FrameEvent.FRAME_ABILITY_CHANGED constant defines the value of the
type property of the event object for a frameAbilityChanged event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
isProgrammatic() | true |
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. |
| FRAME_CLOSING | constant |
public static const FRAME_CLOSING:String = "frameClosing"
The FrameEvent.FRAME_CLOSING constant defines the value of the
type property of the event object for a frameClosing event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
isProgrammatic() | false |
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. |
| FRAME_ICONIFIED | constant |
public static const FRAME_ICONIFIED:String = "frameIconified"
The FrameEvent.FRAME_ICONIFIED constant defines the value of the
type property of the event object for a frameIconified event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
isProgrammatic() | True means this event is fired by the programmatic reason, false means user mouse/keyboard interaction reason. |
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. |
| FRAME_MAXIMIZED | constant |
public static const FRAME_MAXIMIZED:String = "frameMaximized"
The FrameEvent.WINDOW_DEACTIVATED constant defines the value of the
type property of the event object for a frameMaximized event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
isProgrammatic() | True means this event is fired by the programmatic reason, false means user mouse/keyboard interaction reason. |
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. |
| FRAME_RESTORED | constant |
public static const FRAME_RESTORED:String = "frameRestored"
The FrameEvent.FRAME_RESTORED constant defines the value of the
type property of the event object for a frameRestored event.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
isProgrammatic() | True means this event is fired by the programmatic reason, false means user mouse/keyboard interaction reason. |
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. |