Packagech.capi.events
Classpublic class GlobalEvent
InheritanceGlobalEvent Inheritance flash.events.Event

Represents event dispatched by the GlobalEventDispatcher.

See also

GlobalEventdispatcher


Public Properties
 PropertyDefined By
  event : Event
[read-only] Defines the Event dispatched.
GlobalEvent
Public Methods
 MethodDefined By
  
GlobalEvent(type:String, event:Event)
Creates a new GlobalEvent object.
GlobalEvent
  
clone():Event
Creates a copy of the GlobalEvent object and sets the value of each property to match that of the original.
GlobalEvent
Public Constants
 ConstantDefined By
  GLOBAL_AFTER : String = globalAfter
[static] Defines the events that will be dispatched after the dispatching of the specified event.
GlobalEvent
  GLOBAL_BEFORE : String = globalBefore
[static] Defines the events that will be dispatched before the dispatching of the specified event.
GlobalEvent
Property Detail
eventproperty
event:Event  [read-only]

Defines the Event dispatched.


Implementation
    public function get event():Event
Constructor Detail
GlobalEvent()Constructor
public function GlobalEvent(type:String, event:Event)

Creates a new GlobalEvent object.

Parameters
type:String — The type of the event.
 
event:Event — The source event.
Method Detail
clone()method
override public function clone():Event

Creates a copy of the GlobalEvent object and sets the value of each property to match that of the original.

Returns
Event — The cloned Event.
Constant Detail
GLOBAL_AFTERConstant
public static const GLOBAL_AFTER:String = globalAfter

Defines the events that will be dispatched after the dispatching of the specified event.

GLOBAL_BEFOREConstant 
public static const GLOBAL_BEFORE:String = globalBefore

Defines the events that will be dispatched before the dispatching of the specified event.