Показать сообщение отдельно
Старый 19.08.2005, 18:15
vixh вне форума Посмотреть профиль Отправить личное сообщение для vixh Найти все сообщения от vixh
  № 6  
Ответить с цитированием
vixh

Регистрация: Aug 2005
Сообщений: 17
Цитата:
Сообщение от 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");
}
};