Loading Dynamic Text at Runtime in Nested Movies

Okay, here’s the deal. HOW DO YOU LOAD DYNAMIC TEXT FROM AN ALTERNATIVE FILE SUCH AS TEXT.TXT INTO A NESTED MOVE FROM THE MAIN MOVIE!!! Also, how do you do the same with Dynamic Text under a mask. Somtimes my dear flash can be a pain. :-/

BUMPER!!!

I’m having a similar problem.

I have my mc inside of a component does this matter in the calling of the txt file to that MC

for example:

SWF
-Component Instance (nRoll)
-MovieClip Instance (archivedNews)
-TextField Instance (arNews)

so thus my as looks like this:

[AS]loadText = new LoadVars();
loadText.onLoad = function(success) {
if (success) {
archivedNews.arNews.htmlText = this.news;
}
};
loadText.load(“Data2.txt”);[/AS]

Is this correct?

I would post the fla but the component I am using is the accordion component so I figured that limits.

Case