Basic dynamic text prob

Hey all,

I am having what I think is a path problem with Kirupa’s dynamic scrolling text.

[AS]
loadText = new loadVars();
loadText.load(“content.txt”);
loadText.onLoad = function() {
scrolltext.text = this.content;
scrolltext.html = true;
scrolltext.htmlText = this.content;

};[/AS]
My .txt loads fine into my movie until I try to open it in another .swf.

how do i get the text to appear after it’s loaded into another .swf?

thanks a head of time.

chorpe