Hi, i was wondering why this doesn’t work for me and how could i make it work?
this is my coding so far
loadText = new LoadVars();
loadText.load(“DailyNews_March04.txt”);
loadText.onLoad = function() {
DailyNews.text = this.week1;
};
and inside the DailyNews_March04.txt there is…
week1= something
week2= something
week3= something
week4= something
week5= something
and when i run the site, it says “undefined” in the dynamic text box. but the week1 works. But everything else (week2-5) gives me that undefined message.
is it possible to do that?