
Код:
_root.createTextField ("txt", 0, 0, 0, 150, 20);
txt.type = "input";
txt.border = true;
txt.text = "введите свой e-mail";
txt.onSetFocus = function () {
if (txt.text == "введите свой e-mail") {
txt.text = "";
}
};
txt.onKillFocus = function () {
if (txt.text == "") {
txt.text = "введите свой e-mail";
}
};