Package | mx.core |
Interface | public interface ISWFBridgeGroup |
Implementors | SWFBridgeGroup |
Property | Defined By | ||
---|---|---|---|
parentBridge : IEventDispatcher
The bridge that is used to communicate
with this group's parent application. | ISWFBridgeGroup |
Method | Defined By | ||
---|---|---|---|
Adds a new bridge to the pod. | ISWFBridgeGroup | ||
Tests if the given bridge is one of the sandbox bridges in this group. | ISWFBridgeGroup | ||
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 | ||
Removes the child bridge. | ISWFBridgeGroup |
parentBridge | property |
parentBridge:IEventDispatcher
The bridge that is used to communicate with this group's parent application.
public function get parentBridge():IEventDispatcher
public function set parentBridge(value:IEventDispatcher):void
addChildBridge | () | method |
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
Adds a new bridge to the pod.
Parameters
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 | () | method |
public function containsBridge(bridge:IEventDispatcher):Boolean
Tests if the given bridge is one of the sandbox bridges in this group.
Parameters
bridge:IEventDispatcher — The bridge to test.
|
Boolean — true if the handle is found; otherwise false .
|
getChildBridgeProvider | () | method |
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
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.
Parameters
bridge:IEventDispatcher — The target bridge.
|
ISWFBridgeProvider — The object that loaded the child.
|
getChildBridges | () | method |
public function getChildBridges():Array
Gets all of the child bridges in this group.
ReturnsArray — An array of all the child bridges in this group.
Each object in the array is of type IEventDispatcher .
|
removeChildBridge | () | method |
public function removeChildBridge(bridge:IEventDispatcher):void
Removes the child bridge.
Parameters
bridge:IEventDispatcher — The bridge to remove.
|