Loading external text into .swf that's loaded into another .swf... phew

:te:
Hello everyone. I have a little problem. I have a .swf that loads an external text document. The text shows up fine when I test the .swf. However, this .swf is loaded by another movie, and when that movie loads this .swf the text doesn’t show up. I hope that makes sense. Here’s the action script for the .swf with the external text.

[AS]this.loadVariables(“corp.txt”);
this.onData = function () {
myText.text = scrollText;
}
scrollUp.onPress = function () {
this.down = true;
}
scrollUp.onRelease = function () {
this.down = false;
}
scrollDown.onpress = scrollUp.onPress;
scrollDown.onRelease = scrollUp.onRelease;
scrollUp.onReleaseOutside = scrollDown.onReleaseOutside =
scrollDown.OnRelease = scrollUp.onRelease;
scrollUp.onEnterFrame = function () {
if (this._visible && this.down){
–myText.scroll;
}
//*****************
if (myText.scroll == 1){
this._visible = false;
}else{
this._visible = true;
}
//******************
}
scrollDown.onEnterFrame = function () {
if (this._visible && this.down){
++myText.scroll;
}
//*******************
if (myText.scroll == myText.maxscroll){
this._visible = false;
}else{
this._visible = true;
}
//*********************
}
stop();[/AS]

If anyone can help it’s greatly appreciated.

Thanks,
Anthony

:cyborg: