Packagemx.events
Classpublic class Request
InheritanceRequest Inheritance flash.events.Event

Language Version : ActionScript 3.0
Product Version : Flex 4
Runtime Versions : Flash Player 10, AIR 1.5

This is an event that is expects its data property to be set by a responding listener.



Public Properties
 PropertyDefined By
  value : Object
Value of property, or array of parameters for method.
Request
Public Methods
 MethodDefined By
  
Request(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)
Constructor.
Request
Public Constants
 ConstantDefined By
  GET_PARENT_FLEX_MODULE_FACTORY_REQUEST : String = getParentFlexModuleFactoryRequest
[static] Dispatched from a sub-application or module to find the module factory of its parent application or module.
Request
Property Detail
valueproperty
public var value:Object

Language Version : ActionScript 3.0
Product Version : Flex 4
Runtime Versions : Flash Player 10, AIR 1.5

Value of property, or array of parameters for method.

Constructor Detail
Request()Constructor
public function Request(type:String, bubbles:Boolean = false, cancelable:Boolean = false, value:Object = null)

Language Version : ActionScript 3.0
Product Version : Flex 4
Runtime Versions : Flash Player 10, AIR 1.5

Constructor. Does not return anything, but the value property can be modified to represent a return value of a method.

Parameters
type:String — The event type; indicates the action that caused the event.
 
bubbles:Boolean (default = false) — Specifies whether the event can bubble up the display list hierarchy.
 
cancelable:Boolean (default = false) — Specifies whether the behavior associated with the event can be prevented.
 
value:Object (default = null) — Name of a property or method or name of a manager to instantiate.
Constant Detail
GET_PARENT_FLEX_MODULE_FACTORY_REQUESTConstant
public static const GET_PARENT_FLEX_MODULE_FACTORY_REQUEST:String = getParentFlexModuleFactoryRequest

Dispatched from a sub-application or module to find the module factory of its parent application or module. The recipient of this request should set the data property to their module factory. The message is dispatched from the content of a loaded module or application.