HI Everybody
I know it exists, but I just can’t figure it out.
from the site I created, www.performancescope.com
the login is obviously input text.
How can I have the text disappear when the user clicks into the login field?
Any ideas?
Appreciate it.
Sean
system
2
- Create an Input Text textfield
- Name it input_txt
- Add this to the timeline:
input_txt.onSetFocus = function () {
this.text = "";
};
system
3
Awesome. That does the trick.
Thanks for you help, and for teaching me a new command.
It is much appreciated.
Sean