Font embed / external text

Hi, desperate for some assistance in getting two bits of script to combine… Can anyone help please? I want to be able to apply an embedded font to an externally loaded .txt file. I have named the dynamic text field ‘myText’, but the code that embeds the font wants me to enter the words. Both work individually, but they won’t combine:

myLoadVars = new LoadVars();
myLoadVars.onLoad = function() {
// the data is loaded in the myLoadVars object as a property of the object
myText.htmlText = myLoadVars.topHTMLdata;
}
myLoadVars.load(“text1.txt”);
{
}
myFormat=new TextFormat();
myFormat.font=“ComingUp”;

myText.text=“text here”;
myText.embedFonts=true;
myText.setTextFormat(myFormat);

Thanks.

S