
Flash Tutorial - Dragging Objects
Making an object Drag and Drop. Action script. Copy and paste it:
//this line will hide the mouse from the screen
on(rollOver)
{
Mouse.hide();
}
//this line commands to drag the shape when you click on it
on(press) {
startDrag(this);
}
//this line releases the shape and shows the mouse again on the screen
on(release) {
stopDrag();
Mouse.show();
}
//this line shows cursor if cursor goes over the shape without draging it
on(rollOut)
{
Mouse.show();
}
