How do I get my text that doesn’t fit in the textbox to show up on the “next page” when the button is pressed?
I have a large item description text and this text does not fit in the textbox. I want to make the text not in a scrollbox, but split it into “pages”.
If you want full control over the design of the pages and text placement then I’d suggest splitting the the item description over multiple entries in your string table, like:
“Item_Photo_Description1”,
“Item_Photo_Description2”,
“Item_Photo_Description3”.
This way you can simply scan the table for the presence of the key + number suffix and add a page widget for it if it exists.
However, if you require less design control and better accessibility, like scaling text, you might need a more dynamic approach where text automatically wraps and splits among pages. In this case I think the text should be a single entry on a single page widget, where the page widget acts like a book by hiding and showing previous and next parts of the text, while updating its background “page” image. I don’t know how the existing wrapping widgets respond to changes in visibility though, will need to get creative.