点击文字看效果
点击浏览该文件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 = "<A HREF=\"asfunction:Open,"+s+"\">"+s+"</A>";
}
function Open(s) {
var str = "<A HREF=\"asfunction:Close,"+s+"\">"+s;
for (var i = 0; i<5; i++) {
str += "<li>"+i+"</li>";
}
my_txt.htmlText = str+"</A>";
}
function Close(s) {
my_txt.htmlText = "<A HREF=\"asfunction:Open,"+s+"\">"+s+"</A>";
}
init(word);
复制到第一真上看效果,背景是白色的哦
点击文字看效果
点击浏览该文件