AS2:: Possibly print a string?

I have been havign mega issues with printing text within flash for example if text is hidden by a scrollbar then it cuts the text off so I have been trying to think of a way to get around it.

Is it possible to print a string directly from actionscript?

Or possibly something like calling the text in from a .txt file and printing that for, guessing something along the lines of:

 
var TestString:String = new String;
 loadVariables("printTest.txt",TestString)
 trace(TestString);

Any help on this matter would be great as I am totally stuck.