首先,创建一个新的、空文本字段作为由 my_mc 指定的影片剪辑的子级
my_mc.createTextField(“实例名”,深度,x座标,y座标,宽度,高度);
如:
然后,可以对新的文本字段进行属性设置:
myText.multiline = true;
myText.wordWrap = true;
myText.html = true;
myText.border = false;
myText.htmlText = “文本框内容”;
同时也可以设置文本样式
myFormat = new TextFormat();
with (myFormat) {
color = 0xff0000;
bullet = false;
underline = true;
}
mytext.setTextFormat(myFormat);
可以设置的样式有:
align 指示段落的对齐方式。
blockIndent 指示块的缩进,以磅为单位。…