# startDrag Problem

**URL:** https://forum.kirupa.com/t/startdrag-problem/317076
**Category:** flash
**Created:** [December 9, 2010, 5:29pm UTC](https://forum.kirupa.com/t/startdrag-problem/317076 "2010-12-09T17:29:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dfchafin1](https://avatars.discourse-cdn.com/v4/letter/d/dbc845/32.png) [@dfchafin1](https://forum.kirupa.com/u/dfchafin1)
#### Post date: [December 9, 2010, 5:29pm UTC](https://forum.kirupa.com/t/startdrag-problem/317076/1 "2010-12-09T17:29:39Z")

</div>

I have mc i want to drag around the stage but the button in those mc are getting thumped by the drag actions.

this is what i have on each mc which lets them be dragged and the clicked on comes to the top level:

on (press, dragOver) {  
startDrag(\_root.jean1);  
}  
on (release, rollOut, dragOut) {  
stopDrag();  
}  
on (press, release, dragOver, dragOut) {  
\_root.x +=2;  
\_root.jean1.swapDepths(\_root.x);  
}

I want to target: butt1 inside jean1 mc and have it run a simple gotoAndPlay().

any help would be great thanks in advance.
