Hi,
Well I know you can use “Loadvars” to send and load informations to files external to your movie. But until now I’ve always being using it to make flash send or load 1 variable content per file.
Exp :
on (release) {
loadText = new LoadVars();
loadText.load(“TEXT1.txt”);
loadText.onLoad = function(success) {
if (success) {
// trace(success);
newsBox.html = true;
newsBox.htmlText = this.myNews;
}
};
}
I would like to know if there is a way to make the SWF movie load MULTIPLE variables contents from a SINGLE external file. If so, how. I 've tried to do so in many ways but without success.
Any help will be appreciated. Thank you