Показать сообщение отдельно
Старый 24.02.2004, 18:31
Nox Noctis вне форума Посмотреть профиль Отправить личное сообщение для Nox Noctis Посетить домашнюю страницу Nox Noctis Найти все сообщения от Nox Noctis
  № 15  
Nox Noctis
don't panic!
 
Аватар для Nox Noctis

Регистрация: Aug 2001
Сообщений: 4,121
скорее из области лирического эпоса :))
Код:
txt = "Jackdaws love my big sphinx of quartz..";
//
this.createTextField("TF", 1, 0, 0, 0, 0);
TF.border = TF.autoSize=true;
TF.borderColor = 0xFF6600;
TF.type = "input";
TF.textColor = 0xff6600;
TF.variable = "txt";
TF.defaultText = txt;
TF.onChanged = function() {
	var cursor = Selection.getCaretIndex()-1;
	cursor *= (cursor>=0);
	this.text = this.defaultText;
	Selection.setFocus(this);
	Selection.setSelection(cursor, cursor);
};