# Just some quick targetting help, please ;)

**URL:** https://forum.kirupa.com/t/just-some-quick-targetting-help-please/150062
**Category:** flash
**Created:** [June 3, 2005, 11:25am UTC](https://forum.kirupa.com/t/just-some-quick-targetting-help-please/150062 "2005-06-03T11:25:21Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Asparagus](https://avatars.discourse-cdn.com/v4/letter/a/5f8ce5/32.png) [@Asparagus](https://forum.kirupa.com/u/Asparagus)
#### Post date: [June 3, 2005, 11:25am UTC](https://forum.kirupa.com/t/just-some-quick-targetting-help-please/150062/1 "2005-06-03T11:25:21Z")

</div>

I have a scrollable movie clip as an external .swf on a site I’m working on, and the .swf itself works fine but when it’s loaded into another .swf it doesn’t seem to work. I’ve had a fiddle around with it and got the drag button to be able to go up and down as I want it, it’s the movieclip itself that won’t budge.  
Here are the two sets of code. Any help will be appreciated. Thanx in advance.

Drag/Scrollbar thing (instance name: Norman)

```auto
on (rollOver, dragOver) {status = 1;}
on (rollOut, dragOut) {status = 0;}
on (press) {startDrag(this, false, _parent.slide, _parent.top, _parent.slide, _parent.bottom);}
on (release, releaseOutside) {stopDrag();}

```

Movieclip (instancename: WindowIN) that contains another, masked movieclip (instancename: Nadine)

```auto
onClipEvent (enterFrame) {

Y=(getProperty("_parent.Norman",_y)-(_parent.top))*(_parent.factor);
newY = oldY - (Y+oldY)/(_parent.ease);

setProperty("_parent.WindowIN.Nadine",_y,newY);
oldY=newY;
}

```
