I want text to be continued to the below line automatically if it exceeds the width of the screen. How can I do that?
For example this one is exceeding in Android screen and I want it to be seen in the screen fully.
local str=display.newText("HOSGELDINIZ",50,200,nil,70)
I found the answer. In order to avoid exceeding, we need to add two more parameters which limits the text area.
Just like that:
After height and width positions, we add width and height of text area so it’ll wrap without exceeding screen.
I hope that’ll be usefull.