Just want to add that this issue still occurs as of build 2635.
The best solution I’ve found is to make it “editable,” but just close the keyboard when it’s touched. It’s a nasty workaround, but it makes it much easier to scroll for some reason.
Example:
local function inputListener( event ) if event then native.setKeyboardFocus(nil); end end local textBox = native.newTextBox(200, 200, 200, 200); textBox:addEventListener("userInput", inputListener); textBox.isEditable = true;