Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

May 30th, 2006

I have 2 Flex applications. The first application (swf1) loads the other application (swf2). "swf1" has an embedded image inside it, when I try and access the embeded image in "swf2" nothing happens.

The best way to explain it is with some sample code (source can be found here):

swf1:

XML:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*">
  3.  
  4.     <mx:Script>
  5.         <![CDATA[
  6.             // Logo Asset(s)
  7.             [Embed(source="green.gif")]
  8.             var myImage:String;
  9.            
  10.             private function doneLoading():Void {
  11.            
  12.             }
  13.        ]]>
  14.     </mx:Script>
  15.  
  16.     <mx:Loader id="BaseContainer"
  17.         source="swf2.mxml.swf"
  18.         width="100" height="100"
  19.         scaleContent="false" maintainAspectRatio="false"
  20.         complete="doneLoading()"
  21.         borderColor="0x0000FF" borderThickness="2" borderStyle="solid"/>
  22.  
  23.     <mx:Image source="{ myImage }" borderColor="0xFF0000"/>
  24. </mx:Application>

swf2:

XML:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*">
  3.  
  4.     <mx:Image source="{ parentApplication.myImage }" />
  5.     <mx:Image source="{ parentApplication.myImage }" />
  6.     <mx:Image source="{ parentApplication.myImage }" />
  7.     <mx:Image source="{ parentApplication.myImage }" />
  8.     <mx:Image source="{ parentApplication.myImage }" />
  9.  
  10.  
  11. </mx:Application>

I am looking for an example of this working or somebody to tell its just the way it is???

Entry Filed under: Adobe Flex, General


Disclaimer: I work as a Flash/Flex Developer for Adobe Systems Incorporated. The opinions expressed here represent my own and not those of my employer.

My Amazon.com Wish List

Calendar

May 2006
S M T W T F S
« Apr   Jun »
 123456
78910111213
14151617181920
21222324252627
28293031  

Most Recent Posts


Flex.org - The Directory for Flex