5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:北京
性别:先生
最后登录:2014-08-29
http://veteran.5d.cn/
www.toswf.com
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2004/09/03 | 我的组件
类别(Flash)
|
评论
(0)
|
阅读(194)
|
发表于 12:56
#initclip
function starclass() {
}
starclass.prototype = new MovieClip();
starclass.prototype.onEnterFrame = function() {
cscale = this.scale;
for (i=0; i<mytit; i++) {
this["my"+i].onRollOver = function() {
myscale = cscale;
//trace(myscale)
num = this._name.substr(2, 1);
};
this["my"+i].onRollOut = function() {
myscale = 100;
num = this._name.substr(2, 1);
};
this["my"+num]._xscale += (myscale-this["my"+num]._xscale)/speed;
this["my"+num]._yscale += (myscale-this["my"+num]._yscale)/speed;
}
};
starclass.prototype.onLoad = function() {
mytit = this.tit;
myscale = this.scale;
speed = this.speed;
for (i=0; i<mytit; i++) {
this.createEmptyMovieClip("my"+i, i);
with (this["my"+i]) {
beginFill(0x0000FF, 50);
lineStyle(1, 0xff0000, 100);
moveTo(20, 20);
lineTo(-20, 20);
lineTo(-20, -20);
lineTo(20, -20);
lineTo(20, 20);
endFill();
}
this["my"+i]._x = i*80;
}
};
Object.registerClass("star", starclass);
#endinitclip
Flash 动画
:
Flash 动画
:
0
评论
Comments
日志分类
首页
[185]
Flash
[123]
ColdFusion
[2]
Flex
[2]
FlashMedia
[3]
RIA
[4]
Other
[43]
Python
[0]
Design
[8]