Drag and drop question
I'm sure this is a newb question but I just can't figure it out. I can't seem to drop my movieclip to the location I want it.
I have a movieclip contains text and if it collides with another movieclip it will stop drag but for some reason it just won't do it.
here is my code for the drop
function stopdrag(event:MouseEvent)
{
if (cityname.hitTestObject(objhit))
{
trace("work")
event.currentTarget.stopDrag();
}
}
