03-09-2025, 05:41 PM
A quick example of the issue:
Code: (Select All)
Screen 12
$Color:0
f = _LoadFont("courbd.ttf", 16)
g = _LoadFont("courbd.ttf", 16, "MONOSPACE")
Print "First, I'm going to put some text on screen in RED, using variable width font.": Sleep 2
Color Red
_Font f
Locate 10, 10: Print "Hello (10, 10)": Sleep 2
Locate 5, 15: Print "World (5, 15)": Sleep 2
Locate 3
Color BrightWhite
Print "Now, I'm going to put some text on screen in GREEN, using a monospaced font.": Sleep 2
Color Green
_Font g
Locate 10, 10: Print "Hello (10,10)": Sleep 2
Locate 5, 15: Print "World (5, 15)": Sleep 2
Color White
Locate 7
Print "See the difference in the positions?"