# StartDrag issues, PLS help

**URL:** https://forum.kirupa.com/t/startdrag-issues-pls-help/286915
**Category:** Uncategorized
**Created:** [April 22, 2009, 8:06pm UTC](https://forum.kirupa.com/t/startdrag-issues-pls-help/286915 "2009-04-22T20:06:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Leo75](https://avatars.discourse-cdn.com/v4/letter/l/779978/32.png) [@Leo75](https://forum.kirupa.com/u/Leo75)
#### Post date: [April 22, 2009, 8:06pm UTC](https://forum.kirupa.com/t/startdrag-issues-pls-help/286915/1 "2009-04-22T20:06:04Z")

</div>

I have an icon that when pressed displays a msg.  
BUT why when i decide to StartDrag that same movie clip, the icon seems to be disabled or not working?

My movie clips  
mc\_all  
inside of mc\_all i have mc\_icon\_1

heres the code:

```auto

_root.mc_all.onPress = function()
{

	startDrag(_root.mc_all);
};
_root.mc_all.onRelease = function()
{
	stopDrag();
};

_root.mc_all.mc_icon_1.onRollOver = function()
{

	trace("Hello");
};

```
