[AS3]as3文本的竖排写法示例
[AS3]as3文本的竖排写法示例,as3竖排,as3文本
[AS3]as3文本的竖排写法示例
- var _textFiled:TextField = new TextField();
- _textFiled.text = "横排or竖排";
- _textFiled.wordWrap = true;
- _textFiled.selectable = false;
- _textFiled.antiAliasType = AntiAliasType.ADVANCED;
- addChild(_textFiled);
- _textFiled_textFiled.text = _textFiled.text.split("").join("\n");
- var fontDescription:FontDescription=new FontDescription("宋体");
- var format:ElementFormat = new ElementFormat();
- format.fontSize = 32;
- format.color = 0xfffff;
- format.textRotation = TextRotation.AUTO;
- format.fontDescription=fontDescription;
- var textElement:TextElement=new TextElement("",format);
- var textBlock:TextBlock = new TextBlock();
- textBlock.content=textElement;
- textBlock.lineRotation=TextRotation.ROTATE_90;
- var linePosition:Number=0;
- var previousLine:TextLine=null;
- while (true) {
- var textLine:TextLine = textBlock.createTextLine(
- previousLine,
- 180);
- if (textLine==null) {
- break;
- }
- textLine.y=20;
- textLine.x=linePosition;
- linePosition-=25;
- addChild(textLine);
- previousLine=textLine;
- };
- _textFiled_textFiled.text = _textFiled.text.split("\r").join("");
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...