Drag and Drop
How can I stop the other pieces moving when I drag and drop a piece its a jig saw puzzle
p1.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_24);
function fl_ClickToDrag_24(event:MouseEvent):void
{
p1.startDrag();
}
stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_24);
function fl_ReleaseToDrop_24(event:MouseEvent):void
{
p1.stopDrag();
if(tar1.hitTestObject(p1.hit1))
p1.x=205.2;
p1.y=254.8;}
