<?xml version="1.0" encoding="utf-8"?> <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" creationComplete="onCreationComplete()" width="100%" height="48" > <s:layout> <s:BasicLayout/> </s:layout> <fx:Script> <![CDATA[ import spark.effects.*; import spark.effects.animation.*; import spark.filters.BlurFilter; import spark.filters.DropShadowFilter; private var shadowFilter:DropShadowFilter; private function onCreationComplete():void { shadowFilter = new DropShadowFilter(); shadowFilter.strength = 0.5; shadowFilter.blurX = 15; shadowFilter.blurY = 15; apptitle.filters = [shadowFilter]; } ]]> </fx:Script> <s:Label id="apptitle" x="18" y="13" text="FLEX 4 WIZARD COMPONENT" styleName="headingLabel" color="#185F40"> </s:Label> <s:Label right="18" y="16" text="By Anirudh Sasikumar" buttonMode="true" mouseChildren="false" click="navigateToURL(new URLRequest('http://anirudhs.chaosnet.org/blog/2009.12.10.html'));" color="#185F40"> </s:Label> <s:Line y="41" left="10.5" right="10.5"> <s:filters> <s:BlurFilter blurX="2" blurY="2" /> </s:filters> <s:stroke> <s:Stroke color="0x404040" weight="1"/> </s:stroke> </s:Line> </s:Group>