Thanks for the replies.
"RokuMarkn" wrote:
It looks like you're using U+2423 (OPEN BOX). This character is not in the default font. So you can either use your own font which contains this character, or choose a different character which is in the default font, like _ (underscore).
--Mark
I added the character to a custom font, but I still can't see it displayed using .drawText(. How should I reference the new character in my code? Is there an example I can follow? I searched but can't find anything.
I tried:
roScreen.drawText("␣", someX, someY, useFont)
ba = CreateObject("roByteArray")
ba.FromHexString("e290a3")
renderedText = ba.ToAsciiString()
roScreen.drawText(renderedText, someX, someY, useFont)
renderedText = Chr(&H2423)
roScreen.drawText(renderedText, someX, someY, useFont)
but I still can't see anything.
I'm using this font:
http://www.fontex.org/download/inconsolata.otf (according to this website it has the open box character
http://www.fileformat.info/info/unicode ... upport.htm)