Couldn’t find the answer in the forum and am not sure if Flash supports the multiple variables method something like this in one txt file: example01=blah blah blah, example02=blah blah blah blah, example03=blah blah blah etc and these to be pull by various dynamic texts. Below is an example of script to load the txt:
// load info from txt file into various textboxes
exampleContent = new LoadVars();
exampleContent.onLoad = function () {
example01.text = this.example01;
example02.text = this.example02;
example03.text = this.example03;
example04.text = this.example04;
};
exampleContent.load("example.txt");
So the question is there a way to get flash to treat these as the variables in just one txt file or do I have to use muiltiple txt files to break up the variables?
jace