Hello there,
for my project I'd need to copy some text from an editbox to the clipboard. This works fine (on windows and android) as long as I do not use German Umlauts like äöü...
For example, when I try to do this:
setClipboardText("Thomas Müller")
I get this as result:
Thomas Müller
I also tried to replace the ü with the corresponding asci code:
SetClipboardText("Thomas M"+chr(252)+"ller")
the result is the same:
Thomas Müller
Has anyone a good idea how to fix this problem? Or is it just a bug that eventually can be fixed in a new version?
Thanks a lot in advance