How To Create Field Placeholder Text Using Behaviors
This lesson will demonstrate how to create a field that displays placeholder text when the field is a) empty and b) does not have focus.
If you are not familiar with how to create and assign behaviors then please see this lesson.
What I Will Create
The behavior I will show you will displays placeholder text in a field when the field is empty and does not have focus. The field will be light gray.
When the field has focus the placeholder text will disappear and the text color will be inherited (usually black).
Setting the Placeholder Text
You assign the placeholder text by setting the uPlaceholderText custom property (1) of the field (2). The behavior (3) will display this text when appropriate.
You must get and set the text of the field using the uText or uUTF8Text custom properties that are defined in the behavior. These custom properties only return a value if the user has entered some text. They won't return the text if the placeholder is being displayed.
put the uText of field "Field"
The Behavior Script
This is the script of the behavior. In the example stack it is stored in the Placeholder Text Behavior button.
Charles Szasz
I used your placeholder text behavior in a field "first" that displays the text First Name in gray. It works fine. However, I ran into a problem when I wrote a script in a button that is suppose to take the contents of this completed field (field "first") and place it nto another field on the next card. This is my script for a button to copy the first name and put it into the field on the next card:
on mouseUp
if field "First" is not empty
then
put field "First" into field "student" of card "letter"
else
answer information "Please add first name of student."
exit to top
end if
go to card "letter"
end mouseUp
This works fine if the user enters a first name in the field "first". However, if they do NOT enter a first name and press the above button the grayed text First Name is copied into the field on the next card! How can I correct this problem?
Also, I have a question. In custom properties of the field "first", should both uPlaceholderText and uText both First Name in the properties?
Thanks for your time!
Trevor DeVore
The lesson wasn't originally clear about this but you need to use the uText custom property to get and set the text of the field (I've updated the lesson). put the uText of field "First" will only return a value if the placeholder text isn't being displayed.