Skip to content

Instantly share code, notes, and snippets.

Created April 23, 2010 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/376687 to your computer and use it in GitHub Desktop.
Save anonymous/376687 to your computer and use it in GitHub Desktop.
<?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"
xmlns:mx="library://ns.adobe.com/flex/mx"
minWidth="1024" minHeight="768">
<fx:Script>
<![CDATA[
import flashx.textLayout.BuildInfo;
]]>
</fx:Script>
<s:layout>
<s:VerticalLayout paddingLeft="10" paddingTop="10">
</s:VerticalLayout>
</s:layout>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
</fx:Style>
<s:controlBarContent>
<s:Label id="sdkVer" initialize="sdkVer.text = mx_internal::VERSION;" />
<s:Label id="tlfVer" initialize="tlfVer.text = BuildInfo.kBranch + ' ' + BuildInfo.kBuildNumber;" />
</s:controlBarContent>
<s:Label text="Spark labels" fontWeight="bold"/>
<mx:Form>
<mx:FormItem label="fontFamily=Tahoma">
<s:Label id="sparkLabel" fontFamily="Tahoma"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</s:Label>
</mx:FormItem>
<mx:FormItem label="fontFamily=Microsoft Sans Serif">
<s:Label id="sparkLabel2" fontFamily="Microsoft Sans Serif"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</s:Label>
</mx:FormItem>
<mx:FormItem label="fontFamily=Times New Roman">
<s:Label id="sparkLabel3" fontFamily="Times New Roman"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</s:Label>
</mx:FormItem>
<mx:FormItem label="no fontFamily specified">
<s:Label id="sparkLabel4"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</s:Label>
</mx:FormItem>
</mx:Form>
<s:Label text="mx labels" fontWeight="bold"/>
<mx:Form>
<mx:FormItem label="fontFamily=_serif">
<mx:Label id="mxLabel1"
fontFamily="_serif"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</mx:Label>
</mx:FormItem>
<mx:FormItem label="fontFamily=_sans">
<mx:Label id="mxLabel2"
fontFamily="_sans"
fontSize="48"
text="การประมาณวันที่ออกเดินทาง">
</mx:Label>
</mx:FormItem>
</mx:Form>
</s:Application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment