| Package | mx.events |
| Class | public class InterManagerRequest |
| Inheritance | InterManagerRequest flash.events.Event |
| Property | Defined by | ||
|---|---|---|---|
| name : String
Name of property or method or manager to instantiate.
| InterManagerRequest | ||
| value : Object
Value of property, or array of parameters for method.
| InterManagerRequest | ||
| Method | Defined by | ||
|---|---|---|---|
|
InterManagerRequest(type:String, bubbles:Boolean = false, cancelable:Boolean = false, name:String = null, value:Object = null)
Constructor.
| InterManagerRequest | ||
| Constant | Defined by | ||
|---|---|---|---|
| CURSOR_MANAGER_REQUEST : String = "cursorManagerRequest" [static]
Communication between CursorManagers use this request type.
| InterManagerRequest | ||
| DRAG_MANAGER_REQUEST : String = "dragManagerRequest" [static]
Communication between DragManagers use this request type.
| InterManagerRequest | ||
| INIT_MANAGER_REQUEST : String = "initManagerRequest" [static]
Ask the other ApplicationDomain to instantiate a manager in
that ApplicationDomain (if it is not already instantiated)
so it is available to listen to subsequent
InterManagerRequests.
| InterManagerRequest | ||
| SYSTEM_MANAGER_REQUEST : String = "systemManagerRequest" [static]
Request the SystemManager to perform some action.
| InterManagerRequest | ||
| TOOLTIP_MANAGER_REQUEST : String = "tooltipManagerRequest" [static]
Communication between ToolTipManagers use this request type.
| InterManagerRequest | ||
| name | property |
public var name:StringName of property or method or manager to instantiate.
| value | property |
public var value:ObjectValue of property, or array of parameters for method.
| InterManagerRequest | () | constructor |
public function InterManagerRequest(type:String, bubbles:Boolean = false, cancelable:Boolean = false, name:String = null, value:Object = null)
Constructor. Does not return anything, but the value property can be modified
to represent a return value of a method.
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.
|
|
name:String (default = null) — Name of a property or method or name of a manager to instantiate.
|
|
value:Object (default = null) — Value of a property, or an array of parameters
for a method (if not null).
|
| CURSOR_MANAGER_REQUEST | constant |
public static const CURSOR_MANAGER_REQUEST:String = "cursorManagerRequest"
Communication between CursorManagers use this request type.
The name property is the name of some CursorManager property.
The value property is the value of that property.
| DRAG_MANAGER_REQUEST | constant |
public static const DRAG_MANAGER_REQUEST:String = "dragManagerRequest"
Communication between DragManagers use this request type.
The name property is the name of some DragManager property.
The value property is the value of that property.
| INIT_MANAGER_REQUEST | constant |
public static const INIT_MANAGER_REQUEST:String = "initManagerRequest"
Ask the other ApplicationDomain to instantiate a manager in
that ApplicationDomain (if it is not already instantiated)
so it is available to listen to subsequent
InterManagerRequests.
The name property is the name of the manager to instantiate.
| SYSTEM_MANAGER_REQUEST | constant |
public static const SYSTEM_MANAGER_REQUEST:String = "systemManagerRequest"
Request the SystemManager to perform some action.
The name property is the name of action to perform.
The value property is the value needed to perform that action.
| TOOLTIP_MANAGER_REQUEST | constant |
public static const TOOLTIP_MANAGER_REQUEST:String = "tooltipManagerRequest"
Communication between ToolTipManagers use this request type.
The name property is the name of some ToolTipManager property.
The value property is the value of that property.