Hi.
I'm having trouble with this coding. I can write text, but when I write numbers, the whole thing freezes and I can't write anymore. How could I write numbers and letters without having any problems? Also, when I backspace, only when I release it, everything gets deleted. I want to see the backspace deleting one number or digit at a time. Please help, and thank you in advance.
~ Koron XYZ
[keyboard_check_pressed: Any Key Event]
if string_length(keyboard_string) <= name_max
{
if keyboard_string = string_letters(keyboard_string)
{
name = keyboard_string
}
}
else
{
keyboard_string = string_delete(keyboard_string,11,name_max)
}











