Pakiet | mx.core |
Klasa | public class SWFBridgeGroup |
Dziedziczenie | SWFBridgeGroup EventDispatcher Object |
Implementuje | ISWFBridgeGroup |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
parentBridge : IEventDispatcher
Allows communication with the parent
if the parent is in a different sandbox. | SWFBridgeGroup |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
SWFBridgeGroup(owner:ISystemManager)
Constructor. | SWFBridgeGroup | ||
Adds a new bridge to the pod. | SWFBridgeGroup | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Rejestruje obiekt detektora zdarzeń w obiekcie EventDispatcher, dzięki czemu detektor będzie otrzymywał powiadomienia o zdarzeniu. | EventDispatcher | ||
Tests if the given bridge is one of the sandbox bridges in this group. | SWFBridgeGroup | ||
Wywołuje zdarzenie, tj. kieruje je do przepływu zdarzeń. | EventDispatcher | ||
Gets the owner of a bridge and also the DisplayObject
that loaded the child. | SWFBridgeGroup | ||
Gets all of the child bridges in this group. | SWFBridgeGroup | ||
Sprawdza, czy obiekt EventDispatcher zawiera jakiekolwiek detektory zarejestrowane dla konkretnego typu zdarzeń. | EventDispatcher | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Removes the child bridge. | SWFBridgeGroup | ||
Usuwa detektor z obiektu EventDispatcher. | EventDispatcher | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object | ||
Sprawdza, czy detektor zdarzeń określonego typu jest zarejestrowany w tym obiekcie EventDispatcher lub jego elementach macierzystych. | EventDispatcher |
parentBridge | właściwość |
parentBridge:IEventDispatcher
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Allows communication with the parent
if the parent is in a different sandbox.
May be null
if the parent is in the same sandbox
or this is the top-level root application.
Implementacja
public function get parentBridge():IEventDispatcher
public function set parentBridge(value:IEventDispatcher):void
SWFBridgeGroup | () | Konstruktor |
public function SWFBridgeGroup(owner:ISystemManager)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Constructor.
Parametryowner:ISystemManager — The DisplayObject that owns this group.
This should be the SystemManager of an application.
|
addChildBridge | () | metoda |
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Adds a new bridge to the pod.
Parametry
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 | () | metoda |
public function containsBridge(bridge:IEventDispatcher):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Tests if the given bridge is one of the sandbox bridges in this group.
Parametry
bridge:IEventDispatcher — The bridge to test.
|
Boolean — true if the handle is found; otherwise false .
|
getChildBridgeProvider | () | metoda |
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | 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.
Parametry
bridge:IEventDispatcher — The target bridge.
|
ISWFBridgeProvider — The object that loaded the child.
|
getChildBridges | () | metoda |
public function getChildBridges():Array
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Gets all of the child bridges in this group.
ZwracaArray — An array of all the child bridges in this group.
Each object in the array is of type IEventDispatcher .
|
removeChildBridge | () | metoda |
public function removeChildBridge(bridge:IEventDispatcher):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Removes the child bridge.
Parametry
bridge:IEventDispatcher — The bridge to remove.
|
Tue Jun 12 2018, 12:06 PM Z