[原创]flash自制滚动条(加载外部文本)(按滑条)
loadVariablesNum("aboutus.txt", 0);
_root.onEnterFrame = function() {
if (flag == 1) {
if (_root.mytext.scroll<_root.mytext.maxscroll) {
_root.mytext.scroll = _root.mytext.scroll+1;
} else {
_root.mytext.scroll = _root.mytext.maxscroll;
}
}
if (flag == 0) {
_root.mytext.scroll = _root.mytext.scroll-1;
}
};
aa = new Object();
aa.onMouseUp = function() {
_root._global.flag = 2;
};
Mouse.a**Listener(aa);
stop():
/////////////////////////////////////部分代码解释可参考上一个例子啊.
附件: 您所在的用户组无法下载或查看附件