Textbox clears on focus

I am trying to get the textboxes on my email_mc to clearwhen they come into focus. Is this possible in Flash MX 2004 or am I just %#&? out of luck?

Textfield.prototype.clearOnFocus = function(){
this.onSetFocus = function(){
this.text="";
}
}
mytextfield.clearOnFocus();

Thanks alot cladio.


email_txt.onSetFocus = function() {
	firstName.text = "";
};

EEEP, claudio beat me :slight_smile:

You could also put this code in, it will work for all every text field you have.


TextField.prototype.onSetFocus = function() {
	this.text = "";
};

Anytime :wink:

Hey thanks zao that works great too.