ActionScript 3 在ActionScript 3中嵌入字体

Posted

tags:

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

// Create a new instance of the Font1 symbol from the document's library.
var myFont:Font = new Font1();

/* Create a new TextFormat object, and set the font property to the myFont
   object's fontName property. */
var myFormat:TextFormat = new TextFormat();
myFormat.font = myFont.fontName;
myFormat.size = 24;

/* Create a new TextField object, assign the text format using the 
   defaultTextFormat property, and set the embedFonts property to true. */
var myTextField:TextField = new TextField();
myTextField.autoSize = TextFieldAutoSize.LEFT;
myTextField.defaultTextFormat = myFormat;
myTextField.embedFonts = true;
myTextField.text = "The quick brown fox jumped over the lazy dog.";
addChild(myTextField);

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

ActionScript 3 在Actionscript中绘制缩放对象

ActionScript 3 在ActionScript中打开相机

将 Actionscript 1 转换为 Actionscript 3

ActionScript 3 AS3 TextField和StyleSheet示例(在ActionScript中创建)

ActionScript 2.0 和 ActionScript 3.0 有啥区别

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML