在ActionScript 3中嵌入字体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ActionScript 3中嵌入字体相关的知识,希望对你有一定的参考价值。

  1. // Create a new instance of the Font1 symbol from the document's library.
  2. var myFont:Font = new Font1();
  3.  
  4. /* Create a new TextFormat object, and set the font property to the myFont
  5.   object's fontName property. */
  6. var myFormat:TextFormat = new TextFormat();
  7. myFormat.font = myFont.fontName;
  8. myFormat.size = 24;
  9.  
  10. /* Create a new TextField object, assign the text format using the
  11.   defaultTextFormat property, and set the embedFonts property to true. */
  12. var myTextField:TextField = new TextField();
  13. myTextField.autoSize = TextFieldAutoSize.LEFT;
  14. myTextField.defaultTextFormat = myFormat;
  15. myTextField.embedFonts = true;
  16. myTextField.text = "The quick brown fox jumped over the lazy dog.";
  17. addChild(myTextField);

以上是关于在ActionScript 3中嵌入字体的主要内容,如果未能解决你的问题,请参考以下文章

在ActionScript 3中嵌入字体

ActionScript 3 在AS3中嵌入字体 - 资产类

ActionScript 3 在Flex 3上的AS3中嵌入字体

ActionScript 3 AS3在Flex中嵌入系统字体

ActionScript 3 在FlashDevelop中嵌入truetype字体(Flex 4+)

ActionScript 3 在Flash AS3中嵌入抗锯齿字体