hitTestObject in a for statement

Ok I am building a DnD, I have a hitTest setup, and I know when it hits it. But I can’t get out of the for statement if I drop it on the second object. It says it hit it, and then anims back to org. place.


public function onStopDrag(evt:MouseEvent):void {
			stopDrag();
			//
			for(var i:int = 1; i < arrayhitArea.length; i++){
				//
			}
			//
			if(this.getChildByName(evt.target.name).hitTestObject(getChildByName(arrayhitArea*))){
					trace("hit");
					this.getChildByName(evt.target.name).x = getChildByName(arrayhitArea*).x;
					this.getChildByName(evt.target.name).y = getChildByName(arrayhitArea*).y;
					arrayDropArea* = evt.target.name;
					trace(arrayDropArea);
				}else{
					trace("miss");
					var ballXTween:Tween = new Tween(this.getChildByName(evt.target.name),"x",Regular.easeOut,this.getChildByName(evt.target.name).x,numDragX,0.5,true);
					var ballYTween:Tween = new Tween(this.getChildByName(evt.target.name),"y",Regular.easeOut,this.getChildByName(evt.target.name).y,numDragY,0.5,true);
				}
		}

What am I doing wrong?