1.
This is actually very very basic so maybe to small to call it a tutorial, but okay it may not be so basic for beginners so I decided to make it anyway.
Start by creating the graphic you want to drag.

2.
Right click the object and convert it to a button.
In the properties panel (default located at the bottom), and name the button a.

3.
Now select the new button and go to the actionscript panel.
Type in the following actionscript code.
on (press) {
startDrag("a")
}
on (release) {
stopDrag()
}
Now the first part make the button dragable on press, then on release it stops dragging, pretty basics, but may be a good starter for beginners.

And we are done.
discuss this topic to forum
