Hello, please, how do I go through the letters of the alphabet ?.
Do I have to create an array with the letters? Is not there another mode?.
I do not think there is an ascii variable or something like that that allows me to do this in an easier way.
You can use Keyboard.StringFromKeyCode expression. Code for A is 65, code for Z is 90.
Or create a string variable with all letters and use mid()
alphabet="abcdefgh...."
to get 5th letter: mid(alphabet, 4, 1)
Develop games in your browser. Powerful, performant & highly capable.
I think using the string variable will be my solution.
Thank you!.