var edit = new EditText(Color.BLUE, Color.BLACK);
var text = new Text();
text.fitWidth = 300;
text.color = Color.WHITE;
text.content = "Here";
edit.multiline = true;
text.component('edit', edit);
add(text);
Hold M in the textbox and it won't wrap
Possible Solutions:
- Hyphenate?
- Just break onto the new line regardless of where it cuts
- Combo of the above, with an option to insert "wordbreak character"