...
fontInstance = createobject("rofontregistry")
useFont = fontInstance.GetDefaultFont()
...
roScreen.drawText("␣", someX, someY, useFont)
"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
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)
We’re upgrading Roku Community to bring you a faster, more mobile-friendly experience. You may notice limited functionality or read-only access during this time. You will not be able to log in or post new comments or kudos during this time. Read more here.
Planned Downtime:
Community will be unavailable for up to 24–48 hours during the upgrade window during the week of May 12 and you may notice reduced functionality.
In the meantime, for additional assistance, visit our Support Site.
Thanks for your patience — we’re excited to share what’s next!