<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
viewSourceURL="srcview/index.html"
width="500" height="500">
<fx:Declarations>
<s:BlurFilter id="blur" blurX="5" blurY="5" quality="2"/>
</fx:Declarations>
<fx:Script>
<![CDATA[
import spark.filters.DropShadowFilter;
[Embed("images/GoldenGate.jpg")]
[Bindable]private var GoldenGate:Class;
[Embed("images/Harbor.jpg")]
[Bindable]private var Harbor:Class;
]]>
</fx:Script>
<s:Rect width="100%" height="100%">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x404040"/>
<s:GradientEntry color="0xf0f0f0"/>
</s:LinearGradient>
</s:fill>
</s:Rect>
<s:VGroup id="reflectionContainer" x="50" y="50" gap="0">
<s:BitmapImage id="image" source="{Harbor}" x="50" y="50"
width="400" height="200"/>
<s:BitmapImage source="{Harbor}" scaleY="-1" alpha=".4"
width="{image.width}" height="{image.height}"/>
</s:VGroup>
</s:Application>