I have a couple problems, i imagine probably easily fixed, but over my head
Number 1…
My flash movie loads an external text file on loading, then display’s it in another scene in a scrolling box.
The problem is all the line breaks, it seems to add 2 for every 1, is that to do with the text file? or have i missed something in flash? can i remove them with action script?
Number 2…
The Flash movie doesn’t reload the text file every time you oven the page, it seems to open a ‘cached’ version, can i do anything about this?
You could also use this little function to remove them…
[AS]String.prototype.removeCR = function() {
var t = [], s = escape(this), r = “”, i;
t = s.split("%0D");
for (i=0; i<t.length; i++) r += t*;
return unescape®;
};[/AS]