<?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= "955" minHeight= "600" >
<s:layout>
<s:BasicLayout/>
</s:layout>
<fx:Style>
@ namespace s "library://ns.adobe.com/flex/spark" ;
@ namespace mx "library://ns.adobe.com/flex/mx" ;
@font-face{
src:url( "W8.TTF" );
font-family:W8;
}
</fx:Style>
<fx:Declarations>
<!-- 将非可视元素(例如服务、值对象)放在此处 -->
</fx:Declarations>
<s:Label x= "104" y= "107" text= "这是一个测试" fontSize= "32" fontFamily= "W8" />
</s:Application>
|