Buttons with captions

hey all,
I think this is a coding problem, but cant seem to figure it out. I have a intro.swf, which loads, and then loads a file called nav.swf into the middle. Now the problem is, i have buttons in the nav.swf with rollover captions, and they work great when veiw the nav.swf, but when veiwing into.swf with the nav.swf inside it, the captions no longer work. This is the code for the caption:

onClipEvent (enterFrame) {
if (_root.x==1) {
this._alpha = 50;
} else {
this._alpha = 0;
}
}

and this is the code that within the scripting frame:

startDrag(_root.caption, true);

Thanks for any help you can give
SquishyB