Question
Drag Drop (probably easiest question ever)
I'm new to flash and don't have anyone to ask for help so here I am...
I am just trying to create a draggable object. Easy right? Sure looks like it should be simple. But nope, never for me. So I do this:
on (press) {
startDrag (this);
}
on (release, releaseOutside) {
stopDrag ();
}
startDrag (this);
}
on (release, releaseOutside) {
stopDrag ();
}
then I do Test Movie and when I click and drag, the ENTIRE CANVAS drags. The object I set the action for AND every other object on the canvas moves.
I'm creating this for a classroom and would really appreciate any help/advice I can get! Thanks!