5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:
性别:秘密
最后登录:2007-04-12
http://shideng.5d.cn/
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/06/02 | 爆光效果代码。超爽[转]
类别(flash学习)
|
评论
(2)
|
阅读(125)
|
发表于 21:06
偷来的。。哇哈哈。。是该闪就闪老大blog里找到。
我可是那里在忠实卧底
//-------------- 给MovieClip添加 _brightOffset 属性 ---------------
MovieClip.prototype.setBrightOffset = function(offset) {
(new Color(this)).setTransform({rb:offset, gb:offset, bb:offset});
};
MovieClip.prototype.getBrightOffset = function() {
return (new Color(this)).getTransform().rb;
};
with (MovieClip.prototype) {
addProperty("_brightOffset", getBrightOffset, setBrightOffset);
}
//----------------------------------------------------------------
var tween = new mx.transitions.Tween(mc, "_brightOffset", mx.transitions.easing.Regular.easeOut, 0, 255, 1, true);
this.onMouseDown = function() {
tween.yoyo();
};
在主场景中做个MC。名为“mc“,
用鼠标点下。。就出效果。但这个代码超晕。。有几个几乎没见过的函数。
0
评论
Comments
日志分类
首页
[17]
分类一
[1]
flash学习
[14]
绘画
[2]