Цитата:
|
Сообщение от KidsKilla
можно и без моноширинного. повставлять в меж букв табы (str = str.split("").join("\t")) и табстопсом рулить...
|
Как этот код прикрутить в мой:
loadVarsText = new LoadVars();
loadVarsText.load("txt/translation.txt");
//assign a function which fires when the data is loaded:
loadVarsText.onLoad = function(success) {
if (success) {
trace("done loading");
//Now that we know the data is loaded,
//set the text content of the Text Field
//with the instance name "scroller" equal to the
//contents of the variable
this.text = this.text.split("").join("\t")
scroller.htmlText = this.text;
} else {
trace("not loaded");
}
};