Input Text Question

Let me get right to the point – You’ve seen those Input Text Fields on web sites that have titles on them, i.e. Name, Email, Message, in the Text field itself.

Then, when you click on the the text field to type something in, the “title” disappears and you can type your info in.

Perfect example: KurtNoble.com (Under “contact”)

How do I do this?

AS Panel>Objects>Movie>Text Field>Methods>onSetFocus
go play :wink:

Prophet.

Very close… it was: AS Panel>Objects>Movie>Text Field>Events>onSetFocus

Even so, that wasn’t much help to me… how about an explanation, or the ActionScript itself? :beam:

Thanks anyway.

you can test this:

input.onSetFocus=function(){
input.text=" ";
}

“input” is your textfield name.