Paket | mx.core |
Klass | public class SWFBridgeGroup |
Arv | SWFBridgeGroup EventDispatcher Object |
Implementerar | ISWFBridgeGroup |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
parentBridge : IEventDispatcher
Allows communication with the parent
if the parent is in a different sandbox. | SWFBridgeGroup |
Metod | Definieras med | ||
---|---|---|---|
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
Registrerar ett händelseavlyssnarobjekt för ett EventDispatcher-objekt så att avlyssnaren får meddelanden om händelser. | EventDispatcher | ||
Tests if the given bridge is one of the sandbox bridges in this group. | SWFBridgeGroup | ||
Skickar en händelse till händelseflödet. | 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 | ||
Kontrollerar om EventDispatcher-objektet har några avlyssnare registrerade för en viss typ av händelse. | EventDispatcher | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Removes the child bridge. | SWFBridgeGroup | ||
Tar bort en avlyssnare från EventDispatcher-objektet. | EventDispatcher | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object | ||
Kontrollerar om en händelseavlyssnare är registrerad för det här EventDispatcher-objektet eller något av dess överordnade objekt för den angivna händelsetypen. | EventDispatcher |
parentBridge | egenskap |
parentBridge:IEventDispatcher
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
Implementering
public function get parentBridge():IEventDispatcher
public function set parentBridge(value:IEventDispatcher):void
SWFBridgeGroup | () | Konstruktor |
public function SWFBridgeGroup(owner:ISystemManager)
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Constructor.
Parametrarowner:ISystemManager — The DisplayObject that owns this group.
This should be the SystemManager of an application.
|
addChildBridge | () | metod |
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Adds a new bridge to the pod.
Parametrar
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 | () | metod |
public function containsBridge(bridge:IEventDispatcher):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Tests if the given bridge is one of the sandbox bridges in this group.
Parametrar
bridge:IEventDispatcher — The bridge to test.
|
Boolean — true if the handle is found; otherwise false .
|
getChildBridgeProvider | () | metod |
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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.
Parametrar
bridge:IEventDispatcher — The target bridge.
|
ISWFBridgeProvider — The object that loaded the child.
|
getChildBridges | () | metod |
public function getChildBridges():Array
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Gets all of the child bridges in this group.
ReturnerarArray — An array of all the child bridges in this group.
Each object in the array is of type IEventDispatcher .
|
removeChildBridge | () | metod |
public function removeChildBridge(bridge:IEventDispatcher):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Removes the child bridge.
Parametrar
bridge:IEventDispatcher — The bridge to remove.
|
Tue Jun 12 2018, 01:40 PM Z