ID:267753
 
I would really like to know how to make a button that when clicked, deletes the last letter of the user's name, I don't even need all the code, just a line of code containing the delete stuff and I can implement it from there. Any help is much appretiated in advance.

The Conjuror
No code, but the philosophy about it.
First you get the name, use copy_text from the first letter to the text's length(-1). Then set the name to the new variable created using copy_text
:)
Good luck.
In response to Maz
it would be done as follows:

name = copytext(name,1,lentext(name))

Maz said:
"First you get the name, use copy_text from the first letter to the text's length(-1). "

no -1, because then it'd take 2 letters off the name, remember, copytext stops at the 3rd arguments location/number.
In response to JackGuy
Ok, I just got back from lunch, I'll tweek around with it a little more and see if I can get to a conclusion. Thanks for the input, I'll get back to ya if I have any problems.

The Conjuror