函数里的参数,其他的不多说。
为了改善一个功能函数。
功能函数有类似Tween的代码。
如果想 让第一个Tween执行完,便执行第二个Tween
------------------------------------------------
stop();
function tweenTotal(mc,property, endProperty,funnext) {
mc.onEnterFrame=function(){
this[property]+= 0.5*(endProperty-this[property]);
if(this[property]== endProperty){
delete this.onEnterFrame;
funnext();
}
}
tweenTotal(ball,"_y",250,fun);
function fun() {
trace("ddd");
}
为了改善一个功能函数。
功能函数有类似Tween的代码。
如果想 让第一个Tween执行完,便执行第二个Tween
------------------------------------------------
stop();
function tweenTotal(mc,property, endProperty,funnext) {
mc.onEnterFrame=function(){
this[property]+= 0.5*(endProperty-this[property]);
if(this[property]== endProperty){
delete this.onEnterFrame;
funnext();
}
}
tweenTotal(ball,"_y",250,fun);
function fun() {
trace("ddd");
}