Flex4 文字間隔を空けるテスト propg forked:0favorite:0lines:39license : MIT License modified : 2011-04-12 18:13:07 Embed Tweet <?xml version="1.0" encoding="utf-8"?> <!-- forked from ashitaka's Flex4テンプレ --> <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/halo"> <fx:Style> @namespace s "library://ns.adobe.com/flex/spark"; @namespace mx "library://ns.adobe.com/flex/mx"; @namespace controls "nt.controls.*"; @namespace controls1 "labo.controls.*"; @namespace code "http://code.google.com/p/flexlib/"; s|Application { backgroundColor: #FFCCFF; } global { font-family: "MS UI Gothic", Verdana, Arial, Helvetica, sans-serif; fontSize:14px; } </fx:Style> <fx:Script> <![CDATA[ ]]> </fx:Script> <s:layout> <s:VerticalLayout paddingLeft="5" paddingTop="5" paddingBottom="5" paddingRight="5"/> </s:layout> <s:Label text="文字間隔を未設定"/> <s:Label text="文字間隔を0に設定" trackingLeft="0"/> <s:Label text="文字間隔を1に設定" trackingLeft="1"/> <s:Label text="文字間隔を2に設定" trackingLeft="2"/> <s:Label text="文字間隔を3に設定" trackingLeft="3"/> <s:Label text="文字間隔を4に設定" trackingLeft="4"/> <s:Label text="文字間隔を5に設定" trackingLeft="5"/> <s:HGroup> <s:Button label="button1"/> <s:Button label="button2"/> </s:HGroup> </s:Application> Code Fullscreen Preview Fullscreen Flex4 text global