roTextWidget clips text
A very simple script to show the issue: 1 Sub Main() mode = CreateObject("roVideoMode") mode.SetMode("1280x720x60p") EnableZoneSupport(true) labelSettings = { LineCount: 1, TextMode: 2, PauseTime: 0, Rotation: 0, Alignment: 1 } rL1 = CreateObject("roRectangle", 0, 0, 213, 144) tL1 = CreateObject("roTextWidget", rL1, 1, 2, labelSettings) tL1.PushString("CCS") tL1.Show() while(true) end while End Sub [/code] The screen will only show "CC", clipping the last character. There isn't any font size control I can find - it's supposed to be "magic" from the rectangle and the number of lines. The magic isn't working.