A sandbox bridge group is a group of bridges that represent
applications that this application can communicate with.
This application can not share memory with, or can not have access to,
the other applications in the group, but uses the bridge
to communicate with these applications.
The bridge that is used to communicate
with this group's parent application.
Implementation public function get parentBridge():IEventDispatcher public function set parentBridge(value:IEventDispatcher):void
Method Detail
addChildBridge
()
method
public function addChildBridge(bridge:IEventDispatcher, bridgeProvider:ISWFBridgeProvider):void
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
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
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
Flash Player 9, AIR 1.1
Tests if the given bridge is one of the sandbox bridges in this group.
Parameters
bridge:IEventDispatcher — The bridge to test.
Returns
Boolean — true if the handle is found; otherwise false.
getChildBridgeProvider
()
method
public function getChildBridgeProvider(bridge:IEventDispatcher):ISWFBridgeProvider
Language Version :
ActionScript 3.0
Product Version :
Flex 3
Runtime Versions :
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.