How is it possible to mirror a text? For example : I type "12345" and later I want it to be mirrored : "54321" Thanks for your help.
Something like this:
For "n" from 1 to len(text) Set textMirrored to textMirrored & mid(text, len(text)-loopindex, 1)
Develop games in your browser. Powerful, performant & highly capable.
Thanks ;-)