To basic for me.
//This will start the dragging
on(press){ //as you can see you have to click
startDrag("");
}
//This will stop the dragging when you release your mouse
onClipEvent(mouseUp){
stopDrag();
}
mouseUp?
wouldn't it be easier to do:
onClipEvent(Release){
Anyway.
I'd use Release, this is Ok, but this stuff is to basic for me.