Load a string from AS

I’ve some code that works fine loading text from a external file. What I’m tring to do is to not load this txt and write inside the flash application the mensage I need to display.
This is part of the code, the part where I load the txt file…
hope that someone can help me out with this
tks.

[AS]myString = new String();
myLV = new LoadVars();

myLV.load(“textfile.txt”);

myLV.onLoad = function() {
myString = this.var1.toString();
i = myString.length;
play();
};
stop();[/AS]