·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3文本的竖排写法示例

时间:2013-12-15 23:57cnblogs.com
[AS3]as3文本的竖排写法示例,as3竖排,as3文本

[AS3]as3文本的竖排写法示例

  1. var _textFiled:TextField = new TextField(); 
  2.             _textFiled.text = "横排or竖排"
  3.             _textFiled.wordWrap = true
  4.             _textFiled.selectable = false
  5.             _textFiled.antiAliasType = AntiAliasType.ADVANCED; 
  6.                         addChild(_textFiled); 

 

  1. _textFiled_textFiled.text = _textFiled.text.split("").join("\n"); 

 

  1. var fontDescription:FontDescription=new FontDescription("宋体"); 
  2.             var format:ElementFormat = new ElementFormat(); 
  3.             format.fontSize = 32
  4.             format.color = 0xfffff
  5.             format.textRotation = TextRotation.AUTO; 
  6.             format.fontDescription=fontDescription; 
  7.             var textElement:TextElement=new TextElement("",format); 
  8.             var textBlock:TextBlock = new TextBlock(); 
  9.             textBlock.content=textElement
  10.             textBlock.lineRotation=TextRotation.ROTATE_90; 
  11.             var linePosition:Number=0
  12.             var previousLine:TextLine=null
  13.             while (true) { 
  14.                 var textLine:TextLine = textBlock.createTextLine( 
  15.                     previousLine,  
  16.                     180); 
  17.                 if (textLine==null) { 
  18.                     break; 
  19.                 } 
  20.                 textLine.y=20
  21.                 textLine.x=linePosition
  22.                 linePosition-=25
  23.                 addChild(textLine); 
  24.                 previousLine=textLine
  25.             }; 

 

  1. _textFiled_textFiled.text = _textFiled.text.split("\r").join(""); 

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器