Flex4中关于无法构建字体错误

在Flex4中做一个项目,出现一个错误烦恼了一段时间,

代码是这样的:

[Embed(systemFont="宋体",
                fontName="myFont",
                mimeType="application/x-font")]

提示错误

无法构建字体“myFont”

转 换代码时出现意外错误:Cannot embed local font '宋体' as CFF. The CSS @font-face 'local()' Syntax is not supported. Please specify a path directly to a font file using the 'url()' Syntax. For [Embed] Syntax the 'systemFont' attribute is not supported. Please specify a path directly to a font file using the 'source' attribute.

 

通过一个网友的帮助,原来那是flex3中的方法,flex4中发生了变化

 

改过后的代码

[Embed(systemFont="宋体",
          fontName="myFont5",
    mimeType="application/x-font-truetype",
    embedAsCFF="false" )]

flex4中需要加上

mimeType="application/x-font-truetype";

  embedAsCFF="false" 

相关文章

获取网络发布的webservice wsdl: http://www.flash-mx.com/ws/months.cfc?wsdl   GetMonths.mxml   ...
在开发四国军棋的游戏中,通过 flex联机游戏开发- 四国军棋游戏(五)-提炼棋类开发api,我们提炼出了第一...
  1.准备工具 Java SDK 1.5 或更高版本 Tomcat 6.0 或更高版本 Eclipse 3.3 或更高版本 Flex Builder ...
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="ht...
flex4 beta发布了,它是自flex3以来的重大改革。flex4 beta 提供了一种新的组件和皮肤的架构。作为一个...
     昨晚看了flex4中项目渲染器itemRenderer的知识,今天自己动手写一个,增强记忆,做一个简单类...