Search Flex Components Free

Custom Search

December 25, 2007

Flex Media Image Source Code

Flex Sample Source Code:

Creat a New File :
ImageDemo.mxml

---------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="#FFFFFF">

<mx:HBox horizontalGap="50">

<mx:VBox width="100%" height="100%" horizontalAlign="center">
<mx:Label text="This image was embedded in the SWF"/>
<mx:Image source="@Embed('../assets/products/Nokia_6630.png')"/>
</mx:VBox>

<mx:VBox width="100%" height="100%" horizontalAlign="center">
<mx:Label text="This image was loaded dynamically"/>
<mx:Image source="../assets/products/Siemens_SX1.png"/>
</mx:VBox>

</mx:HBox>

</mx:Application>

Related Flex Tutorials