[lua]
local options =
{
text= questions,
x = 0,
y = 0,
width = value - border*2,
font = native.systemFont,
fontSize = 16,
}
local gameQuestion1 = display.newText(questions, 50,200,500,50, native.systemFont, 18)
gameQuestion1:setFillColor(50)
[/lua]
How can i make a Text Box which holds a multi-line text, for example
i want “Where are you?” to be enclosed in a small text box, then when a button is pressed a new text will be displayed like “What are you doing and who are you with?” is a long sentence and i also i want it to be enclosed in the same text box, but larger.