# Dragging & movie clip buttons?

**URL:** https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440
**Category:** Uncategorized
**Created:** [January 31, 2003, 8:29am UTC](https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440 "2003-01-31T08:29:57Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Darkitecture](https://avatars.discourse-cdn.com/v4/letter/d/a587f6/32.png) [@Darkitecture](https://forum.kirupa.com/u/Darkitecture)
#### Post date: [January 31, 2003, 8:29am UTC](https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440/1 "2003-01-31T08:29:57Z")

</div>

How do I keep the buttons of a draggable movie clip ( say, a stereo control) dominant after I input the startdrag coding? it seems that buttons in a mc are overridden by this; I have two fistfuls of hair and no answers!

:hangover: the Darkitect

---

<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: [January 31, 2003, 8:35am UTC](https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440/2 "2003-01-31T08:35:22Z")

</div>

Well it is because you are making your mc a button as well. This overlaps your other buttons since your buttons are inside the mc.

You should create a drag button inside your MC and use that to drag the mc it is in.

Something like…

```php
on (press) {
	_parent.startDrag();
}
on (release) {
	stopDrag();
}

```

---

<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: [January 31, 2003, 8:40am UTC](https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440/3 "2003-01-31T08:40:56Z")

</div>

■■■■ guy you are one quick motha… I just figured it out and decided to cancel my post and here you already answered it. You’re right, I figured that all I needed to do was create a title bar or something to drag it by a la windows. Thanks for your quick attention!

---

<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: [January 31, 2003, 8:43am UTC](https://forum.kirupa.com/t/dragging-movie-clip-buttons/12440/4 "2003-01-31T08:43:38Z")

</div>

No problemo 😉

Now put that hair back in your head… :beam:
