I still did not find a solution to the following problem:
I created several buttons and to each one I associated some Action script coding:
on (release){
loadVarsText = new loadVars();
loadVarsText.load(“redWine.txt”);
loadVarsText.onLoad = function(success) {
if (success) {
scroller.html = true;
scroller.htmlText = this.var1;
} else {
trace(“not loaded”);
}
};
}
Then I created a file that I of course called redWine.txt and I added some HTML formatting. The problem is that the dynamic text box only display 27 of the lines of the text file. The txt file is attached here.
:q: