Нет, я тоже был прав

ВОТ ТАК не глючит вообще!

Код:
_root.createEmptyMovieClip("targets",_root.getNextHighestDepth());
for(var i=0;i<=100;i++){
_root["targets"].attachMovie("n","target"+i,i,{_x:Math.random()*500,_y:Math.random()*400});
}
for(var j=0;j<=50;j++){
num = _root.getNextHighestDepth();
_root.attachMovie("bullet","bullet"+num,num);
_root["bullet"+num]._y = Math.random()*400;
_root["bullet"+num].onEnterFrame = function(){
this._x+=2;
if(_root["targets"].hitTest(this._x,this._y,true)){
for(var i in _root["targets"]){
if(_root["targets"][i].hitTest(this._x,this._y,true))
_root["targets"][i].removeMovieClip();
}
}
}
}