Hi All!
So I got past the tutorial on scrolling dynamically loaded text and it worked brilliant. My issue now is that my text is uploading partially. The file gets cut off after half of it is loaded. Not all of it is showing up. Below is the code I am using:
loadText = new LoadVars();
loadText.load(“aboutus.txt”);
loadText.onLoad = function() {
about_txt.text = this.aboutustext;
};
why is it cutting off my file? Why doesn’t it load the complete file? and is there anything I need to add to this to make it load the whole file? Is there a limit on the amount of characters that I don’t know about? Any help will be greatly appreciated.