# Mask & startDrag

**URL:** https://forum.kirupa.com/t/mask-startdrag/253295
**Category:** Uncategorized
**Created:** [February 28, 2008, 10:19pm UTC](https://forum.kirupa.com/t/mask-startdrag/253295 "2008-02-28T22:19:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tolk](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/tolk/32/2496_2.png) [@tolk](https://forum.kirupa.com/u/tolk)
#### Post date: [February 28, 2008, 10:19pm UTC](https://forum.kirupa.com/t/mask-startdrag/253295/1 "2008-02-28T22:19:04Z")

</div>

```auto
plate.addEventListener(MouseEvent.MOUSE_DOWN, drag);
plate.addEventListener(MouseEvent.MOUSE_UP, noDrag);
plateBlur.mask = plate.plateMask;
function drag(event:MouseEvent):void {
    plate.startDrag();
}
function noDrag(event:MouseEvent):void {
    plate.stopDrag();
}
stop();

```

The movieClip plate drags around the stage on mouse down but the movieClip plateMask (which is inside plate) doesn’t move with plate. How can i fix this?  
Sorry if this is stupid question, i’m new to as3 and still getting used to the difference between as2 and as3.
