07/09/28 20:16:01 x25CWzzO
acl=2.5;
brk=1.5;
n=1;
rmt=100;
function copy(){
ball.duplicateMovieClip("ball"+n,n+10);
for(i=1;i<=n;i++){
this["xRnd"+i]=Math.random()*rmt-rmt/2;
this["yRnd"+i]=Math.random()*rmt-rmt/2;
this["xm"+i]=_xmouse+this["xRnd"+i];
this["ym"+i]=_ymouse+this["yRnd"+i];
}
this["ball"+n].onEnterFrame=function(){
this._x+=((this["xm"+n]-this._x)*acl)/brk;
this._y+=((this["ym"+n]-this._y)*acl)/brk;
}
n++;
}
st.onRelease=function(){
copy();
}
のonEnterFrame内のthis["xm"+n]とthis["ym"+n]にfor内のthis["xm"+i]とthis["ym"+i]を渡したいのですが、
onEnterFrame内でthis["xm"+n]をtraceするとundefinedが出ます。どうしたらいいでしょうか?