Scrolling dynamically loaded text with css

I found the following tutorials helpful, but now I want to combine them, but I don’t know how.

http://www.kirupa.com/developer/mx/dynamic_scroller.htm

http://www.kirupa.com/developer/mx2004/cssfile.htm

code for the scroller
[COLOR=“Navy”]loadText = new loadVars();
loadText.load(“answers.txt”);
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.answer;
};[/COLOR]

code for the css
[COLOR=“Navy”]var format = new TextField.StyleSheet();
var path = “css.css”;
format.load(path);
format.onLoad = function(loaded) {
if (loaded) {
output.styleSheet = format;
myLoadVar = new LoadVars ();
myLoadVar.load(“answers.txt”)
myLoadVar.onLoad = function (success){
if (success == true) {
output.variable = “answer”
output.htmlText=myLoadVar.answer;
}
}
} else {
output.text = “Error loading CSS file!”;
}
};
stop();[/COLOR]
what do I need to change to make this code work together?
thanks for any help!
:sure:
actual files are located at
http://homepage.mac.com/graphicmuse/dynamicscroller_CSS.zip