Pakket | mx.events |
Klasse | public class InterManagerRequest |
Overerving | InterManagerRequest Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
name : String
Name of property or method or manager to instantiate. | InterManagerRequest | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event | ||
value : Object
Value of property, or array of parameters for method. | InterManagerRequest |
Methode | Gedefinieerd door | ||
---|---|---|---|
InterManagerRequest(type:String, bubbles:Boolean = false, cancelable:Boolean = false, name:String = null, value:Object = null)
Constructor. | InterManagerRequest | ||
Dupliceert een instantie van een subklasse Event. | Event | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
CURSOR_MANAGER_REQUEST : String = "cursorManagerRequest" [statisch]
Communication between CursorManagers use this request type. | InterManagerRequest | ||
DRAG_MANAGER_REQUEST : String = "dragManagerRequest" [statisch]
Communication between DragManagers use this request type. | InterManagerRequest | ||
INIT_MANAGER_REQUEST : String = "initManagerRequest" [statisch]
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" [statisch]
Request the SystemManager to perform some action. | InterManagerRequest | ||
TOOLTIP_MANAGER_REQUEST : String = "tooltipManagerRequest" [statisch]
Communication between ToolTipManagers use this request type. | InterManagerRequest |
name | eigenschap |
public var name:String
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Name of property or method or manager to instantiate.
value | eigenschap |
public var value:Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Wed Jun 13 2018, 11:42 AM Z