Flash Input Text Question
Flash Input Text Question
Out of context: Reply #1
- Started
- Last post
- 3 Responses
- unfittoprint0
txt = "initial content";
textBox.text = txt;
textBox.onSetFocus = function() {
if (this.text == txt) {
this.text = "";
}
};
txt = "initial content";
textBox.text = txt;
textBox.onSetFocus = function() {
if (this.text == txt) {
this.text = "";
}
};