在ActionScript 3中嵌入字体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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 在AS3中嵌入字体 - 资产类
ActionScript 3 在Flex 3上的AS3中嵌入字体
ActionScript 3 AS3在Flex中嵌入系统字体