点击文字看效果
点击浏览该文件var word = "Click Me!";
function init(s) {
createTextField("my_txt", 0, 100, 100, 1000, 1000);
my_txt.autoSize = "center";
my_txt.wordWrap = true;
my_txt.multiline = true;
my_txt.HTML = true;
my_txt.HTMLText = ""+s+"";
}
function Open(s) {
var str = ""+s;
for (var i = 0; i<5; i++) {
str += "
"+i+"";
}
my_txt.htmlText = str+"";
}
function Close(s) {
my_txt.HTMLText = ""+s+"";
}
init(word);复制到第一真上看效果,背景是白色的哦
点击文字看效果
点击浏览该文件