Hi all,
Here's my (latest) question: if I have a text field that, at a given charsize, would get clipped, is there a flag or property that gets set somewhere that informs me of, say, the number of lines or soft carriage returns? That might not be the right way to phrase it, so here's what I want to happen:
If I have a string of text that wouldn't fit in a text instance (let's say I have a text field 1000 pixels wide; the text I want to assign to its msg property would take up 1200 pixels at a given charsize), is there any way to know, programmatically, when I'm out of bounds, visually? I want to recursively reduce the charsize until all the text fits within the available space, but I'd need to know when I'm back under the maximum width. In the way that fe.Text.width refers to the assigned width of the text instance, is there any internal value that lets me know what the actual width of the text is? Similar, I guess, to fe.Image.texture_width.
Clear as mud? Maybe pictures will help (they help me all the time!):
Uncorrected. This is what an overlong game title would look like:
Corrected. This is what I want to achieve programmatically:

Any thoughts? As always, thanks!
Edit: I just now noticed the scrollingtext module, and buried in there is code that would potentially work. Holy crap there's a lot of stuff under the hood there!

Wow...