Hi,
If a player types his name into a text box, how do I set an event to automatically capitalize the first letter of his name, before storing inside array?
Thanks.
Develop games in your browser. Powerful, performant & highly capable.
Set s to InputBox.text
Set s to uppercase(left(s,1)) & right(s, len(s)-1)