Paquete | mx.events |
Clase | public class InterManagerRequest |
Herencia | InterManagerRequest Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
name : String
Name of property or method or manager to instantiate. | InterManagerRequest | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event | ||
value : Object
Value of property, or array of parameters for method. | InterManagerRequest |
Método | Definido por | ||
---|---|---|---|
InterManagerRequest(type:String, bubbles:Boolean = false, cancelable:Boolean = false, name:String = null, value:Object = null)
Constructor. | InterManagerRequest | ||
Duplica una instancia de la subclase Event. | Event | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
CURSOR_MANAGER_REQUEST : String = "cursorManagerRequest" [estática]
Communication between CursorManagers use this request type. | InterManagerRequest | ||
DRAG_MANAGER_REQUEST : String = "dragManagerRequest" [estática]
Communication between DragManagers use this request type. | InterManagerRequest | ||
INIT_MANAGER_REQUEST : String = "initManagerRequest" [estática]
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" [estática]
Request the SystemManager to perform some action. | InterManagerRequest | ||
TOOLTIP_MANAGER_REQUEST : String = "tooltipManagerRequest" [estática]
Communication between ToolTipManagers use this request type. | InterManagerRequest |
name | propiedad |
public var name:String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Name of property or method or manager to instantiate.
value | propiedad |
public var value:Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Value of property, or array of parameters for method.
InterManagerRequest | () | Información sobre |
public function InterManagerRequest(type:String, bubbles:Boolean = false, cancelable:Boolean = false, name:String = null, value:Object = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 | Constante |
public static const CURSOR_MANAGER_REQUEST:String = "cursorManagerRequest"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 | Constante |
public static const DRAG_MANAGER_REQUEST:String = "dragManagerRequest"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 | Constante |
public static const INIT_MANAGER_REQUEST:String = "initManagerRequest"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 | Constante |
public static const SYSTEM_MANAGER_REQUEST:String = "systemManagerRequest"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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 | Constante |
public static const TOOLTIP_MANAGER_REQUEST:String = "tooltipManagerRequest"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Tue Jun 12 2018, 02:12 PM Z