Scrolling Dynamically Loaded Text

I have just completed the tutorial called “Scrolling Dynamically Loaded Text” in the Flash MX section. When I go to publish it I get an error warning from Flash 8:

Warning Scene=Scene 1, layer=text, frame=1:Line 1: Case-insensitive identifier ‘loadVars’ will obscure built-in object ‘LoadVars’.
loadText = new loadVars();

Total ActionScript Errors: 1 Reported Errors: 1

Is there some way to resolve this?

Thanks

loadText = new loadVars();

should be
loadText = new LoadVars();

try that :ch: