Pacchetto | mx.core |
Interfaccia | public interface ISWFBridgeGroup extends IEventDispatcher |
Implementatori | SWFBridgeGroup |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
parentBridge : IEventDispatcher
The bridge that is used to communicate
with this group's parent application. | ISWFBridgeGroup |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Adds a new bridge to the pod. | ISWFBridgeGroup | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | IEventDispatcher | ||
Tests if the given bridge is one of the sandbox bridges in this group. | ISWFBridgeGroup | ||
Invia un evento nel flusso di eventi. | IEventDispatcher | ||
Gets the owner of a bridge and also the DisplayObject
that loaded the child. | ISWFBridgeGroup | ||
Gets all of the child bridges in this group. | ISWFBridgeGroup | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | IEventDispatcher | ||
Removes the child bridge. | ISWFBridgeGroup | ||
Rimuove un listener dall'oggetto EventDispatcher. | IEventDispatcher | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | IEventDispatcher |
Descrizione delle proprietà
parentBridge | proprietà |
parentBridge:IEventDispatcher
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The bridge that is used to communicate with this group's parent application.
Implementazione
public function get parentBridge():IEventDispatcher
public function set parentBridge(value:IEventDispatcher):void
Descrizione dei metodi
addChildBridge | () | metodo |
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Adds a new bridge to the pod.
Parametri
bridge:IEventDispatcher — The bridge to communicate with the child content.
| |
bridgeProvider:ISWFBridgeProvider — The DisplayObject that loaded the content
represented by the bridge. Usually this is will be an instance of the SWFLoader class.
|
containsBridge | () | metodo |
public function containsBridge(bridge:IEventDispatcher):Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Tests if the given bridge is one of the sandbox bridges in this group.
Parametri
bridge:IEventDispatcher — The bridge to test.
|
Boolean — true if the handle is found; otherwise false .
|
getChildBridgeProvider | () | metodo |
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Gets the owner of a bridge and also the DisplayObject
that loaded the child.
This method is useful when an event is received
and the event.target
is the bridge.
The bridge can then be converted into the owning DisplayObject.
Parametri
bridge:IEventDispatcher — The target bridge.
|
ISWFBridgeProvider — The object that loaded the child.
|
getChildBridges | () | metodo |
public function getChildBridges():Array
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Gets all of the child bridges in this group.
RestituisceArray — An array of all the child bridges in this group.
Each object in the array is of type IEventDispatcher .
|
removeChildBridge | () | metodo |
public function removeChildBridge(bridge:IEventDispatcher):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Removes the child bridge.
Parametri
bridge:IEventDispatcher — The bridge to remove.
|
Tue Jun 12 2018, 02:44 PM Z