# Problem whith drag option

**URL:** https://forum.kirupa.com/t/problem-whith-drag-option/38725
**Category:** flash
**Created:** [December 29, 2003, 1:21am UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725 "2003-12-29T01:21:52Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![freggel](https://avatars.discourse-cdn.com/v4/letter/f/82dd89/32.png) [@freggel](https://forum.kirupa.com/u/freggel)
#### Post date: [December 29, 2003, 1:21am UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725/1 "2003-12-29T01:21:52Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 29, 2003, 3:29am UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725/2 "2003-12-29T03:29:18Z")

</div>

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 😃

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 29, 2003, 4:40am UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725/3 "2003-12-29T04:40:14Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 29, 2003, 11:42am UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725/4 "2003-12-29T11:42:35Z")

</div>

[http://proto.layer51.com/d.aspx?f=588](http://proto.layer51.com/d.aspx?f=588)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [December 29, 2003, 5:35pm UTC](https://forum.kirupa.com/t/problem-whith-drag-option/38725/5 "2003-12-29T17:35:04Z")

</div>

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);  
}  
😃
