Loading external text problem (edited title)

I was doing this tutorial
http://www.kirupa.com/developer/mx/multiple_dynamictext.htm

and i swear i did every thing how it said, and when i click on the button the text doesnt load

here is the AS for the first button

on (release) {
loadText = new loadVars();
loadText.load(“TEXT1.txt”);
loadText.onLoad = function(success) {
if (success) {
// trace(success);
newsBox.html = true;
newsBox.htmlText = this.myNews;
}
};
}

and yes i already made my text1.txt document and its in the same folder as the flash files…

I have the same problem - I recieve this message -

Warning Scene=aboutus, layer=text, frame=1:Line 2: The identifier ‘loadVars’ will not resolve to built-in object ‘LoadVars’ at runtime.
loadText = new loadVars();

Total ActionScript Errors: 1 Reported Errors: 1

any ideas?

Watch for the capital L:

new **L**oad Vars();

Don’t forget to remove the space inbetween :wink: