You need the flash program where user is able to drag objects or shapes from one part of the screen to other using mouse? You are on the right way!.
1. Launch Flash MX 2004
2. Create new Flash file. Click File > New...
3. Select Flash Document in a new window
4. With the "Rectangle Tool" draw a simple shape in the middle of the working area
5. Right click on the shape and convert it to movie clip.
6. Click once on the movie to select it, open Action panel and add the following action script code:
//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();
}
7. Now press "Ctrl+Enter" to see if you did everything right.
We hope the information helped you. If you have any questions
or comments, please don't hesitate to post them on the
Forums section Submit your Tutorial at Click Here