How to make a movie clip drag able




Add the following code to a movie clip to make it drag able:


onClipEvent (mouseDown) {

startDrag(this);
}
onClipEvent (mouseUp) {
stopDrag();
}