HitTest issue

I am having an issue with a hitTestObject inside a for loop. When I drag an item it traces back that it was a hit but still animates back to its original place. I can’t figure out what is going on with this…

Here is my code



public function snapInPlace(evt):void {
			tempMC = MovieClip(getChildByName(evt))
			myLoop: for(var i:int = 1; i < arrayhitArea.length; i++){
				tempMC2 = MovieClip(getChildByName(arrayhitArea*))
				trace("&&&&&&&&&&&&&&&"+tempMC2.name)
				//
				if(tempMC.hitTestObject(tempMC2)){
					trace("hit")
					//
					tempMC.x = tempMC2.x;
					tempMC.y = tempMC2.y;
					arrayDropArea* = evt;
					break myLoop;
				}else{
					trace("miss");
					//					
					animBack(evt);
				}
			}
		}
		//
		public function animBack(evt):void{
			trace("animBack")
			var ballXTween:Tween = new Tween(this.getChildByName(evt),"x",Regular.easeOut,this.getChildByName(evt).x,numDragX,0.5,true);
			var ballYTween:Tween = new Tween(this.getChildByName(evt),"y",Regular.easeOut,this.getChildByName(evt).y,numDragY,0.5,true);
		}


When I do a trace this is what I get.

drag1_mc
drag2_mc
drag3_mc
&&&&&&&&&&&&&&&drop1_mc
miss
animBack
&&&&&&&&&&&&&&&drop2_mc
hit

Even though it says hit, it still goes back to its original place.