Scrolling Dynamic Text

I need to have more than 1 dynamic scrolling text field on stage. At the moment if I place another on stage I have no text in the new one, and the new one scrolls the other one.
Any ideas

The Actionscript

var scrollDirection:String;
var scrollBarMax:Number = _root.scrollDown._y - _root.scrollTrackBar._y - _root.scrollTrackBar._height

var myLV:LoadVars = new LoadVars();
myLV.onLoad = function (success) {
if (success) {
loadedInfo.htmlText = myLV.info;
_root.loadedInfo.scroll = 1;
_root.scrollTrackBar.scrollBar._y = 0;
scrollCheck();
} else {
loadedInfo.text = “There has been an error.”;
}
};
myLV.load(“textData.txt”);

function scrollCheck() {
if (loadedInfo.maxscroll == loadedInfo.scroll) {
scrollUp.enabled = false;
scrollUp._alpha = 50;
scrollDown.enabled = false;
scrollDown._alpha = 50;
scrollTrackBar.scrollBar.enabled = false;
scrollTrackBar.scrollBar._alpha = 50;
} else {
scrollUp.enabled = true;
scrollUp._alpha = 100;
scrollDown.enabled = true;
scrollDown._alpha = 100;
scrollTrackBar.scrollBar.enabled = true;
scrollTrackBar.scrollBar._alpha = 100;
}
}

function scrollText() {
_root.onEnterFrame = function() {
if (scrollDirection ==“up”) {
loadedInfo.scroll -= 1;
} else if (scrollDirection == “down”) {
loadedInfo.scroll += 1;
}
scrollPercent = ((loadedInfo.maxscroll-loadedInfo.scroll) / (loadedInfo.maxscroll-1));
scrollTrackBar.scrollBar._y = scrollBarMax-(scrollBarMax*scrollPercent);
};
}