Just some quick targetting help, please ;)

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)

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)

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;
}