Packagesekati.events
Classpublic class ApplicationEvent
InheritanceApplicationEvent Inheritance flash.events.Event

ApplicationEvent provides a baseline application event object with optional data transport capabilities.

See also

sekati.events.ApplicationEventDispatcher


Public Properties
 PropertyDefined by
  data : *
The data property can be used to pass information with ApplicationEvent's.
ApplicationEvent
Public Methods
 MethodDefined by
  
ApplicationEvent(type:String, eventData:Boolean = null, bubbles:Boolean = false, cancelable:* = false)
ApplicationEvent Constructor
ApplicationEvent
  
clone():Event
ApplicationEvent
  
dispatch():Boolean
Allows for easy dispatching of the ApplicationEvent instance via the ApplicationEventDispatcher.
ApplicationEvent
Property detail
dataproperty
public var data:*

The data property can be used to pass information with ApplicationEvent's. This may be useful when the developer does not wish to extend ApplicationEvent (though it is recommended that event classes be written for each type of core ApplicationEvent when appropriate).

Constructor detail
ApplicationEvent()constructor
public function ApplicationEvent(type:String, eventData:Boolean = null, bubbles:Boolean = false, cancelable:* = false)

ApplicationEvent Constructor

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

Returns
Event
dispatch()method 
public function dispatch():Boolean

Allows for easy dispatching of the ApplicationEvent instance via the ApplicationEventDispatcher.

Returns
Boolean

See also