ActionScript 3 AS3:隐藏TextArea边框

Posted

tags:

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

import fl.controls.TextArea;

var ta:TextArea = new TextArea();
	ta.x = 0;
	ta.y = 0;
	ta.width = 300;
	ta.height = 300;
	ta.text = "Hello World";
	ta.setStyle("upSkin",Sprite);
	addChild( ta );

以上是关于ActionScript 3 AS3:隐藏TextArea边框的主要内容,如果未能解决你的问题,请参考以下文章