Is it possible to get text to paragraph instead of being in a straight line?
eg normal: qwertyuiopasdfghjklzxcvbnm
paragraped:
qwert
yuiop
asdfg
hjklzx
cvbnm
kinda like using the <br> tag in html
Most times a string can be split into seperate lines by using the \n escape sequence within the string (that is when using, for example, 'new GreenfootImage("qwert\nyuiop\nasdfg\nhjklzx\ncvbnm", 24, Color.black, Color.white)' or some of the other methods dealing with displaying text).