blob: 59a15037e5aea52715fc14eed3042c58900ebea9 [file]
<s:TitleWindow
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark"
width="300" height="400" toolTip="This is the TitleWindow toolTip">
<fx:Script>
<![CDATA[
]]>
</fx:Script>
<s:layout> <s:VerticalLayout/> </s:layout>
<mx:HBox>
<mx:Button id="myButton" label="Halo Button"/>
<s:Button id="mySparkButton" label="Spark Button"/>
</mx:HBox>
<mx:Label text="Halo Label"/>
<s:Label text="Spark Label"/>
<mx:TextArea text="Halo TextArea" height="40"/>
<s:TextArea text="Spark TextArea" height="150"/>
<mx:HBox height="25">
<s:NumericStepper id="mySparkNS" height="23" />
<mx:NumericStepper id="myHaloNS" height="23"/>
</mx:HBox>
<mx:VBox height="25">
<mx:HSlider id="myHSlider"/>
<s:HSlider id="mySparkHSlider"/>
</mx:VBox>
</s:TitleWindow>