Dragging and Rotating Individual Movie Clips

Hello everyone

A while ago, I posted a little thread asking for help with a simple yet stressing issue (at least for me, an AS noob). I wanted to drag individual movie clips around the stage as well as rotate them, but wasn’t able to because of X reason.

Now i have just finished the right script and I’m posting it here in case anyone is having the same problem.

on (press) {
    drag = true;
}
on (release) {
    drag = false;
}
onClipEvent (enterFrame) {
    if (drag) {
        this._x = _root._xmouse;
        this._y = _root._ymouse;
        if (Key.isDown (Key.RIGHT)) {
            this._rotation +=10;
        }
        if (Key.isDown (Key.LEFT)) {
            this._rotation -=10;
        }
    }
}

I hope it helps someone, i have seen some threads asking for something like this. The only downside i find is that you have to place the code in any object you want it to work, but it’s not that bad.

Cheers,
JRRC