2005 05-31
评论(0)
France flashfestival 2005 -法国flashfestival获奖名单
May 31st, 2005
法国flashfestival 2005 最终名单列表:
http://www.flashfestival.net/2005/index.php?rub=finalistes
//初始化窗口位置
main_mc._x = Stage.width/2;
main_mc._y = Stage.height/2;
//设置屏幕缩放
Stage.scaleMode = "noScale";
Stage.align = "LT";
//初始化变量
vx = 0;
vy = 0;
fraction=.6;
//spring 弹性
main_mc.onEnterFrame = function() {
var centerX = Stage.width/2;
var centerY = Stage.height/2;
dy= centerY-this._y;
dx = centerX-this._x;
vx += dx*.5;
vy += dy*.5;
vx *= fraction;
vy *= fraction;
this._x += vx;
this._y += vy;
};
Stage.addListener(main_mc);
如果不清楚spring的应用。可以参考ActionScript Animation简明教程或是去ws-forum讨论
example
download fla