Hello, Im using scroll view to show the instructions, when I have it set to cover the whole screen using
display.contentWidth and display.contentHeight
the text wraps around to the next line fine. I want to make the scroll view be around 40% smaller than the total screen size but when I make the scroll view smaller the text still thinks its meant to be going to the total width of the screen and does wrap around at the new size.
local scrollView = widget.newScrollView { left = display.contentWidth - 290, top = 0, width = display.contentWidth/1.3, height = display.contentHeight/3, topPadding = 380, bottomPadding = -350, horizontalScrollDisabled = true, verticalScrollDisabled = false, listener = scrollListener, } local lotsOfText = "--------------------------------------------------------\n -- Help and Shortcuts --\n--------------------------------------------------------\n\n -- Issues --\n\n \* If no result is shown, make sure the RUN has been selected FIRST, followed by the business's name.\n\n \* If no result is shown, double check your spelling
Thanks for the help