I have written this in invisible movieclip
on (press)
{
pop_addprod.startDrag();
trace(“Start”)
}
on (release)
{
pop_addprod.stopDrag();
trace(“Stop”);
}
pop_addprod is the movileclip to be dragged
But when I click on the mouse and start dragging, its not getting to stopDrag()
Any idea?