Loading external text

I’m trying to load text1.txt in my dynamic text box Scrolltext, but it won’t work. I have tried several tuts on several sites, but none of these work. Here is my script:


loadText = new loadVars();
loadText.load("TEXT2.txt");
loadText.onLoad = function(success) {}
	if (success) {
			// trace(success);
			scrolltext.html = true;
			 scrolltext.htmlText = this.myNews;
	}

Make sure all your names match up. For example, you mention your textbox is called Scrolltext but you have it as scrolltext in the code. Also you say you are trying to load text1.txt but in your code you have TEXT2.txt. I do believe that Flash is picky about capitals and such so make sure all your t’s are crossed and your i’s dotted. If you are still having problems post again.

Oh and one more thing to check. In your text file make sure it starts with myNews=whatever your text is - with no spaces before or after the equal sign.

:hr:

loadText.onLoad = function(success) {}
if (success) {
// trace(success);
scrolltext.html = true;
 scrolltext.htmlText = this.myNews;
}

you see the line that says:
loadText.onLoad = function(success) {}
you need to take that last character off, so that it only reads:
loadText.onLoad = function(success) {
and then, to the very end of that piece of code, add another
}
so that you get:

loadText = new loadVars();
loadText.load("TEXT2.txt");
loadText.onLoad = function(success) {
   if (success) {
      // trace(success);
      scrolltext.html = true;
      scrolltext.htmlText = this.myNews;
   }
}

oh yeah . . . that too!

Nice catch cyberathlete!

Thanx for the replys, but there is still nog solution.

All the names match up, and the updated code from cyberathlete work neither.

More sugestions?

EDIT:
I have done the code inside a frame. Everytime i test the movie, flash shows the warning:
The identifier ‘loadVars’ will not resolve to built-in object ‘LoadVars’ at runtime.
loadText = new loadVars();

But i don’t really understand what it means (I’m dutch you know).

post your fla and the txt file

:hr:

http://www.blueboat.biz/help/main_content.fla

and

http://www.blueboat.biz/help/TEXT2.txt

Yo if you are going to post in the MX thread then post files that are MX format. Otherwise post in the MX2004 thread. Please. Thank you.

:hr:

:smiley: danke schön :smiley:

whoa!! it does exist Nice catch lunatic!

lol, do you mean people actually don’t see that?

:hr:

Use LoadVars

And how would my actionscript would look like then?:beam:

Exactly what you have, but using the capital L for LoadVars.

Thanx, that was the solution.

Welcome