Not wanting to use canvas, I am looking for a way to get linebreaks created when the lines reach a certain length.
Basically I was going to use something like this.
Basically I want the text to show up something like this:
I am aware that I can use \n to force a linebreak, and that is what I want - in a function.
But I need a way to check for when the line is X amount long.
Basically I was going to use something like this.
Code:
class My_Text extends GFxMoviePlayer; var GFxObject myTextField; myTextField.SetString("text", "This is the very best line of text i ever saw -somewhere in here i want linebreaks!");
Code:
This is the very best line of text i ever saw -somewhere in here i want linebreaks!
But I need a way to check for when the line is X amount long.
Comment