mkv25.net games Open Menu Banner Image Drag and Drop Tutorial

drag and drop tutorial macromedia flash flash mx something button movie clip drag draw code actionscript

Scrapbook / Drag and Drop Tutorial
-0001/11/30 00:11:00

This was originaly made for a guy at work to help broaden his understanding of Flash objects and actionscript.

Its put together very simply. You click on the object and drag it around until you let go.

The layout of the scene is basic. A set of text boxes. Then a movie clip called "something" with a button object inside.

Assigned to the actions of the button, inside the movie clip, is the following code:

Code:
on (press) {
tellTarget (this) {
startDrag(this, true);
}
}
on (release) {
tellTarget (this) {
stopDrag();
}
}

Which is really simple if you ask me. Dragging stuff around in flash is great because it gives the user so much apparent control. Theres only so much you can do with dragging objects around the page, but its rather fun. Simple applications might be a 'fridge magnet' website with lots of dijointed words that you can shape together, or a <em>virtual doll</em>, where you dress up a model using layered clothing elements... maybe a set designer? Somethnig where you have lots of shapes that can be positioned anyway the user sees fit.

I might make something along one of those lines ^ although it'll probably include some fancy database link so users can save their 'designs' online. (I like that sort of thing).

The text boxes simply read off values from the 'something' object, just checking and updating the positions in a loop.

Flash Disabled

Please enable flash player to view this content.

Related