本页面由 Flash 保存计划 从 Internet Archive 存档还原 · 快照 2011-03-09 · 原址 http://www.flash8.net/teach/3513.htm ← Flash 保存计划

星星点灯

作者:mymylove   类型:原创   来源:闪吧

   点击浏览该文件
点击浏览该文件

代码:

for (var i = 1; i<=10; i++) {
_root.attachMovie("mc1", "mc"+i, i);
with (_root["mc"+i]) {
_x = random(550);
_y = random(400);
_width = 30;
_height = 30;
gotoAndStop(Number(random(10)));
}
_root["mc"+i].onMouseDown = function() {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.gotoAndStop(Number(random(10)));
}
};
}
/*很精练哦*/
   责任编辑:uufeng    时间:2005年6月28日