| Package | mx.events | 
| Class | public class InterManagerRequest | 
| Inheritance | InterManagerRequest  Event  Object | 
| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
| Property | Defined By | ||
|---|---|---|---|
|  | bubbles : Boolean [read-only] 
	Indicates whether an event is a bubbling event. | Event | |
|  | cancelable : Boolean [read-only] 
	Indicates whether the behavior associated with the event can be prevented. | Event | |
|  | constructor : Object 
	 A reference to the class object or constructor function for a given object instance. | Object | |
|  | currentTarget : Object [read-only] 
	The object that is actively processing the Event object with an event listener. | Event | |
|  | eventPhase : uint [read-only] 
	The current phase in the event flow. | Event | |
| name : String 
      Name of property or method or manager to instantiate. | InterManagerRequest | ||
|  | target : Object [read-only] 
	The event target. | Event | |
|  | type : String [read-only] 
	The type of event. | Event | |
| 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 | ||
|  | 
	 Duplicates an instance of an Event subclass. | Event | |
|  | 
	 A utility function for implementing the toString() method in custom 
	 ActionScript 3.0 Event classes. | Event | |
|  | 
	 Indicates whether an object has a specified property defined. | Object | |
|  | 
	Checks whether the preventDefault() method has been called on the event. | Event | |
|  | 
	 Indicates whether an instance of the Object class is in the prototype chain of the object specified 
	 as the parameter. | Object | |
|  | 
	Cancels an event's default behavior if that behavior can be canceled. | Event | |
|  | 
	 Indicates whether the specified property exists and is enumerable. | Object | |
|  | 
     Sets the availability of a dynamic property for loop operations. | Object | |
|  | 
	Prevents processing of any event listeners in the current node and any subsequent nodes in 
	the event flow. | Event | |
|  | 
	Prevents processing of any event listeners in nodes subsequent to the current node in the 
	event flow. | Event | |
|  | 
	 Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
|  | 
	Returns a string containing all the properties of the Event object. | Event | |
|  | 
	 Returns the primitive value of the specified object. | Object | |
| 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:String| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
Name of property or method or manager to instantiate.
| value | property | 
public var value:Object| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
Value 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)| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
	  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"| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
      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"| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
      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"| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
      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"| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
      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"| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | Flash Player 9, AIR 1.1 | 
      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.
      
      
Thu Dec 4 2014, 05:50 PM -08:00