Drag and drop

hi,

actually this is pretty urgent … um … I was making this flash file that allows the user click, drag and drop the (for example) circles. However, I have many frames of different shapes and sizes of circles.

My problem is; when I run the swf file, I drag a circle from frame 1 around, when I go to frame 2, the circle dragged from frame 1 disappears back to its original place. (much like a reset)

I want to make the clip stay in place (position after i dragged it) even as when I change to the other frames.

How should I write the code for it? Thanks alot!

Right now my code is only the following, for each of the circle movie clips;

on (press){
StartDrag("");
dragging=true
}

on (release, releaseOutside){
StopDrag();
dragging=false
}