- UID
- 343
- 帖子
- 987
- 精华
- 13
- 积分
- 7771
- 阅读权限
- 101
- 来自
- 哈尔滨工程大学
- 在线时间
- 124 小时
- 注册时间
- 2004-12-17
- 最后登录
- 2008-7-11
|
6楼
发表于 2005-6-18 12:20
| 只看该作者
- if (_root.numMade<_root.maxGens) {
- _root.numMade++;
- finalScale = 100/3;
- for (i=1; i<=4; i++) {
- this.attachMovie("line", "k"+i, i);
- this["k"+i]._xscale = finalScale;
- this["k"+i]._yscale = finalScale;
- }
- this["k1"]._x = (-100);
- this["k1"]._y = 0;
- this["k2"]._x = (-25);
- this["k2"]._y = (-43.3);
- this["k2"]._rotation = (-60);
- this["k3"]._x = (25);
- this["k3"]._y = (-43.3);
- this["k3"]._rotation = (60);
- this["k4"]._x = (100);
- this["k4"]._y = 0;
- stop();
- } else {
- prevFrame();
- }
复制代码 这段代码是每次都在上一个MC上复制4个子MC,产生分形效果,代码不难理解。
[ Last edited by 紫色流星 on 2005-6-20 at 11:16 ] |
|