
flash一些文字效果 类似下拉菜单形式
新建--背景为白色--第一帧 -输入以下代码
var word = "列表";
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<10; 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);
分类: flash 学习日记本
所属版块
: 大杂烩
: 大杂烩
本文章引用通告地址(TrackBack Ping URL)为: 

本文章尚未被引用。
下一篇: 怎样可以让flash 导出的gif 停止

