|

- UID
- 427126
- 帖子
- 25
- 威望
- 16 点
- 魅力
- 16
- ◎心币◎
- 16 $
- 推广积分
- 4 分
- 充值币
- 0 枚
- 性别
- 男
|
板凳
发表于 2008-9-15 23:55
| 只看该作者
看看这个嘛
i_text = "明少空间欢迎你 ";
i_len = i_text.length;
n = 0;
while (n<i_len) {
_root.createEmptyMovieClip("iT"+n, n);
t = i_text.substr(n, 1);
with (_root["iT"+n]) {
createTextField("i_t", 2, 0, 0, 20, 20);
i_t.text = t;
//trace(aiyi_t.text)
}
n++;
}
startDrag(iT0, true);
_root.onLoad = function() {
speed = 3;
};
_root.onEnterFrame = function() {
i = 1;
while (i<=_root.i_len) {
_root["iT"+i]._x += 5+(_root["iT"+(i-1)]._x-_root["iT"+i]._x)/speed;
_root["iT"+i]._y += (_root["iT"+(i-1)]._y-_root["iT"+i]._y)/speed;
i++;
}
};
_root.Mouse.hide();
|
-
1
评分次数
-
|