class org.aswing.event.FocusKeyEvent extends KeyboardEvent

Class Fields

static var FOCUS_KEY_DOWN:String

The FocusKeyEvent.FOCUSKEYDOWN constant defines the value of the type property of the event object for a focusKeyDown event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
charCodeThe character code value of the key pressed or released.
keyCodeThe key code value of the key pressed or released.
keyLocationThe location of the key on the AWKeyboard.
ctrlKeytrue if the Control key is active; false if it is inactive.
altKeyfalse, reserved
shiftKeytrue if the Shift key is active; false if it is inactive.
currentTargetThe 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.
targetThe 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.

@eventType focusKeyDown

static var FOCUS_KEY_UP:String

The FocusKeyEvent.FOCUSKEYUP constant defines the value of the type property of the event object for a focusKeyUp event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelablefalse
charCodeThe character code value of the key pressed or released.
keyCodeThe key code value of the key pressed or released.
keyLocationThe location of the key on the AWKeyboard.
ctrlKeytrue if the Control key is active; false if it is inactive.
altKeyfalse, reserved
shiftKeytrue if the Shift key is active; false if it is inactive.
currentTargetThe 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.
targetThe 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.

@eventType focusKeyUp

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from KeyboardEvent

var altKey:Bool
var charCode:UInt
var ctrlKey:Bool
var keyCode:UInt
var keyLocation:KeyLocation
var shiftKey:Bool
function updateAfterEvent():Void

Inherited from Event

var bubbles:Bool
var cancelable:Bool
var currentTarget:Dynamic
var eventPhase:EventPhase
var target:Dynamic
var type:String
function clone():Event
function formatToString(className:String, ?p1:Dynamic, ?p2:Dynamic, ?p3:Dynamic, ?p4:Dynamic, ?p5:Dynamic):String
function isDefaultPrevented():Bool
function preventDefault():Void
function stopImmediatePropagation():Void
function stopPropagation():Void
function toString():String

function new(type:String, ?charCode:Int = 0, ?keyCode:Int = 0, ?keyLocation:Dynamic = null, ?ctrlKey:Bool = false, ?altKey:Bool = false, ?shiftKey:Bool = false): Void

function clone(): Event