Packagecom.asfusion.mate.events
Classpublic class DispatcherEvent
InheritanceDispatcherEvent Inheritance flash.events.Event

Event that notifies when Dispatcher changes.



Public Properties
 PropertyDefined by
  newDispatcher : IEventDispatcher
Reference to the new dispatcher.
DispatcherEvent
  oldDispatcher : IEventDispatcher
Reference to the previous dispatcher.
DispatcherEvent
Public Methods
 MethodDefined by
  
DispatcherEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor
DispatcherEvent
  
clone():Event
Duplicates an instance of an Event subclass.
DispatcherEvent
Public Constants
 ConstantDefined by
  CHANGE : String = "changeDispatcherEvent"
[static] Type that indicates that the dispatcher has been changed.
DispatcherEvent
Property detail
newDispatcherproperty
public var newDispatcher:IEventDispatcher

Reference to the new dispatcher.

oldDispatcherproperty 
public var oldDispatcher:IEventDispatcher

Reference to the previous dispatcher.

Constructor detail
DispatcherEvent()constructor
public function DispatcherEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)

Constructor

Parameters
type:String
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Method detail
clone()method
public override function clone():Event

Duplicates an instance of an Event subclass. Returns a new Event object that is a copy of the original instance of the Event object. You do not normally call clone(); the EventDispatcher class calls it automatically when you redispatch an event—that is, when you call dispatchEvent(event) from a handler that is handling event.

Returns
Event
Constant detail
CHANGEconstant
public static const CHANGE:String = "changeDispatcherEvent"

Type that indicates that the dispatcher has been changed.