ActionScript 3 AS3防止TextArea组件中的多线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3防止TextArea组件中的多线相关的知识,希望对你有一定的参考价值。

import flash.text.TextFormat;
import fl.controls.TextArea;
import flash.events.Event;

var myTextArea:TextArea = new TextArea();
myTextArea.setSize(200, 100);
myTextArea.text = "Hello World";

var myTextFormat:TextFormat = new TextFormat();
myTextFormat.font = "Arial";
myTextFormat.size = 22;
myTextFormat.bold = false;
myTextFormat.italic = false;
myTextFormat.underline = false;
myTextArea.setStyle("textFormat", myTextFormat);

myTextArea.x = 30;
myTextArea.y = 30;
addChild(myTextArea);

myTextArea.setStyle("focusRectSkin",Sprite);

myTextArea.addEventListener(Event.CHANGE, onMyTextArea_CHANGE);

function onMyTextArea_CHANGE(event:Event)
{
    myTextArea.text = myTextArea.text.replace("\r", "");
}

以上是关于ActionScript 3 AS3防止TextArea组件中的多线的主要内容,如果未能解决你的问题,请参考以下文章

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

[ActionScript 3.0] AS3.0 水面波纹效果

ActionScript 3 AS3:使用SWFObject2和AS3传递变量

ActionScript 3 克隆数组(AS3)

ActionScript 3 AS3序列化

ActionScript 3 As3初始上限