Hi,
I have a UIInput field that is a fixed size. 8 lines with 12 characters per-line. I want the field to display all 96 characters at all the time, and I have the starting value filled out with 96 placeholder characters to begin with.
I'm having several problems with this. Firstly, when the input field is clicked by the user, the cursor jumps to the end of the text. This isn't so much of a problem except that the text field will scroll up and out of view to display only the last few characters in it (this is a behavior with the Input field itself, please note I'm not talking about a Scroll-View, which I'm not using here). If the user presses the up arrow repeatedly, the lines will scroll back down and display.
Essentially I want this paragraph to display at all times, no scrolling within the input field, and allow the user to simply click it to edit without moving the text automatically.
I have the UILabel set to display exactly 8 lines of text, with Clamped Content and a Character Limit on the UIInput component set to 96 characters exactly. How can I keep this from scrolling?
Thank you in advance.