ActionScript 3 在Flash中清理文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 在Flash中清理文本相关的知识,希望对你有一定的参考价值。
private function set_text(_txt:String, _size:Number, _font:String, _width:Number=250, txt_color:uint = 0x00CADF ):TextField{
var txt:TextField = new TextField();
var fmt:TextFormat = new TextFormat();
fmt.font = _font;
fmt.size = _size;
fmt.leading = 1.5;
fmt.kerning = true;
fmt.color = txt_color;
txt.embedFonts = true;
txt.defaultTextFormat = fmt;
txt.multiline = true;
txt.wordWrap = true;
txt.antiAliasType ='advanced';
txt.width = _width;
txt.autoSize = 'left';
txt.text = _txt;
return txt ;
}
以上是关于ActionScript 3 在Flash中清理文本的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 在Flash中绘制虚线lInes(FOUND)
有啥理由在 Flash 中编辑 ActionScript 3 文件实际上不会编辑它?
ActionScript 3:在 Flash embed 中失去焦点时保持 textarea UIscrollbar 位置
ActionScript 3 在Flash AS3中嵌入抗锯齿字体
ActionScript 3 flash中FLV视频的actionscript cuepoint监听器
ActionScript 3 通过Flash应用在Facebook中跟踪Google Analytics