Paquete | mx.core |
Interfaz | public interface ISWFBridgeGroup extends IEventDispatcher |
Implementadores | SWFBridgeGroup |
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 |
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
parentBridge : IEventDispatcher
The bridge that is used to communicate
with this group's parent application. | ISWFBridgeGroup |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
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 objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | IEventDispatcher | ||
Tests if the given bridge is one of the sandbox bridges in this group. | ISWFBridgeGroup | ||
Distribuye un evento en el flujo del evento. | 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 | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | IEventDispatcher | ||
Removes the child bridge. | ISWFBridgeGroup | ||
Elimina un detector del objeto EventDispatcher. | IEventDispatcher | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | IEventDispatcher |
Información sobre propiedades
parentBridge | propiedad |
parentBridge:IEventDispatcher
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 |
The bridge that is used to communicate with this group's parent application.
Implementación
public function get parentBridge():IEventDispatcher
public function set parentBridge(value:IEventDispatcher):void
Información sobre métodos
addChildBridge | () | método |
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
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 |
Adds a new bridge to the pod.
Parámetros
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 | () | método |
public function containsBridge(bridge:IEventDispatcher):Boolean
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 |
Tests if the given bridge is one of the sandbox bridges in this group.
Parámetros
bridge:IEventDispatcher — The bridge to test.
|
Boolean — true if the handle is found; otherwise false .
|
getChildBridgeProvider | () | método |
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
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 |
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.
Parámetros
bridge:IEventDispatcher — The target bridge.
|
ISWFBridgeProvider — The object that loaded the child.
|
getChildBridges | () | método |
public function getChildBridges():Array
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 |
Gets all of the child bridges in this group.
Valor devueltoArray — An array of all the child bridges in this group.
Each object in the array is of type IEventDispatcher .
|
removeChildBridge | () | método |
public function removeChildBridge(bridge:IEventDispatcher):void
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 |
Removes the child bridge.
Parámetros
bridge:IEventDispatcher — The bridge to remove.
|
Tue Jun 12 2018, 02:12 PM Z