i got a problem in my game. i want to check if a ball is below a line and if it does, it should attach a ball to another mc and reomve itself. the porblem is that it seems to remove both. here is the code:

code:

_x += Math.round(Math.random()*4)-2;
_y += 2;
if (_y>300) {
_root.snow.i++;
_root.snow.attachMovie("snow2", "s"+_root.snow.i, _root.snow.i);
_root.snow["s"+_root.snow.i]._x = _x;
trace(_root.snow["s"+_root.snow.i]._x);
_root.snow["s"+_root.snow.i]._y = _y;
_root.snow["s"+_root.snow.i].gotoAndStop(2);
removeMovieClip(this);
}



this is in hte first frame (because it is attached). any help please