Hello all,
I’m using a movie clip (called “drag”) to drag a movie clip called “map” for an interactive map. As I drag the drag.mc, the map.mc moves as well.
It works like the navigator tool in Photoshop. When you drag the little red box, the image moves around. Same thing with my interactive map.
Sometimes the drag.mc doesn’t always work. Here’s the code I’m using for the drag movie clip:
on (press) {
startDrag(this, true);
}
on (release) {
stopDrag();
}
I then sync the drag.mc coords to the map.mc coords.
Is there any reason the button would be quirky and not work all the time? What it does is I click and it won’t drag, or I have to click once, pause, then click again to make it work?
Any help or suggestions would be appreciated. Thanks