It is possible to print one character to display by formatting it with "%c"
So, you can send a value (ASCII code), U8, to display and you will see one character.
But I want to send an whole string to display not only in fixed size fonts, in proportional fonts too (like Arial, and the other windows fonts).
So I don't know the position of the characters on display. I only know the string.
So I want to send a string in form of an array. The elements of the array are U8.
For example: Array ist: Array[6]U8 = (115,116,114,105,110,103) and display will show "string"
Also you can input a cursor instead of normal character and let it blink, so the user will see, where to input the next character!
This would be a very nice feature to print Text, which the user has typed in for documentations and so on.
Is this a good idea?
I use Guide 5.0 at the moment. Perhaps it is realized in newer version?