flash动态文本居中、左对齐、右对齐代码
发布网友
发布时间:2022-03-25 23:58
我来回答
共1个回答
热心网友
时间:2022-03-26 01:27
不知你是用AS2,还是AS3,但我这是AS3。
从你内容来看,你加载的txt内容应该是html格式的。
如果想通过html来对齐的话,可以用:
var this_txt:TextField=new TextField();
this_txt.border=true;
this_txt.multiline=true;
this_txt.wordWrap=true;
this_txt.htmlText="<p align='center'>文本内容</p><b>这是测试,</b><br>测试正常";
addChild(this_txt);
如果想通过flash AS3来对齐的话,代码:
var this_txt:TextField=new TextField();
this_txt.border=true;
this_txt.multiline=true;
this_txt.wordWrap=true;
this_txt.htmlText="这是文本测试!<br>测试正常"
addChild(this_txt);
var txtFor:TextFormat=new TextFormat();
//对齐方式
txtFor.align = "center";
this_txt.setTextFormat(txtFor);