Problem whith drag option

I have enebled the drag option for my buttons but now I have the problem that when you release the button you will go to the link.:hangover:

Is there some method for enable the drag option on a double press instead of one press or something like that :crazy:

so I can do the geturl on one press and the drag on a double press

thanks anyway
Happy Holidays:?)

Greetings

Woah… Why don’t you allow people to drag it when they hold down a button and then click it… Would be a helluva lot easier :smiley:

just make it simple like marz said, like this website here: www.leejeans.com.au {though not linked}

just do like simple on press start drag and on release url

http://proto.layer51.com/d.aspx?f=588

Thanks for the help but I have found a solution by setting start drag on with dragout and on release goto url.

something like this:
on (dragOver, dragOut) {
startDrag(“button”);
}
on (release, releaseOutside) {
stopDrag();
}
on (release) {
gotoAndPlay(“Scene 3”, 1);
}
:smiley: