Sorry to bother you once more... finally got up the courage to test if this project works.Zizzo wrote: ↑Wed Nov 06, 2024 3:12 am I'm not aware of any multi-line text input components provided by the T-Engine, no. The closest I've managed to come to something like that is in the Background tab of the T2 module's character creation dialog, which has a Textzone above the Textbox that shows the full content of what you've entered, updated as you edit:
Code: Select all
on_change = function(text)
self.history = text
local lines = string.splitText(text, 60)
self.c_hist_disp.text = table.concat(lines, '\n')
self.c_hist_disp:generate()
end,