myOutput.onKillFocus = function(){
myOutput.text = myOutput.text.substr(0,1).toUpperCase() +
myOutput.text.substr(1);
}
Thanks
-Ken
Try this:
TextField.prototype.onKillFocus = function(){
this.text = this.text.substr(0,1).toUpperCase()+ this.text.substr(1);
}
Luck, Wiebe
"Ken Silanskas" <ksi...@dillstarproductions.com> wrote in message
news:bdni6a$sb9$1...@forums.macromedia.com...