I have a multi line textbox that shows some information and the user can add to that info. I have to display the text first and I set the width and height to allow the text to wrap and scroll vertically. However the textbox ignores the width setting and adds horizontal scrolling even tho I have it set not to. Here is some sample code:
--ADD THE BODY TXT local bodyInput = native.newTextBox(0, 50, 300, 300) bodyInput.isEditable = true bodyInput.hasBackground = true bodyInput.font=native.newFont( native.systemFont, 19 ) bodyInput:setTextColor(179,179,179) bodyInput.text = "If you've struggled with mobile development or are stumped where to begin, then you'll love Corona. Our APIs are simple and easy to use."
This should create a non scrolling textbox thats 300x300 with the text I set wrapping in the text box. What it actually does is add horizontal scrolling and ignore the width setting. Please help Corona.