Цитата:
|
Сообщение от iNils
Глубина поля всегда 1. А должна быть уникальная.
|
Спасибо громадное! помогла вставка:

Код:
function create_TXT_field (txt_name, txt_x, txt_y, txt_w, txt_h, txt_type)
{
_root.createTextField(txt_name, getNextHighestDepth(), txt_x, txt_y, txt_w, txt_h);
_root[txt_name].border = true;
_root[txt_name].borderColor = 0x000000;
//далее обрабатывается txt_type...
};
create_TXT_field ("text1_txt", 0, 0, 130, 20, 1);
create_TXT_field ("text2_txt", 0, 30, 50, 20, 2);
create_TXT_field ("text3_txt", 60, 30, 60, 20, 3);