Printing Text within an MC

Want to print the contents of a dynamic text box. Flash can’t do this to my knowledge so I had to put my text box inside a movieclip and name it PRINTMC. Unfortuately, now that my text box is inside my mc the scroll buttons I made no longer function. I’ve tried putting them inside the movie clip with the text box, and also outside the movie clip but nothing seems to work. my text box is called TECHNICAL if anyone needs that information.

onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse)) {
scrolldown = true;
}
}
onClipEvent (mouseUp) {
scrolldown = false;
}
onClipEvent (enterFrame) {
if (scrolldown) {
_root.technical.scroll -= 1;
gotoAndStop(2);
} else {
gotoAndStop(1);
}
}
onClipEvent (load) {
gotoAndStop(1);
}

I was thinking, now that my text box is INSIDE an mc, do I have to change the code from _root.technical.scroll? If so anyone got any ideas what I must change it to? If anyone is confused then i can provide an example FLA file of what I mean.

you need to use _root.PRINTMC.technical.scroll

Peace

Many thanks. I will try it now and let you know.