Code 1.
local anyText = display.newText ("Some dance to remember!", display.contentCenterX, display.contentCenterY/4, native.systemFont, 25)
Code 2.
local anotherText =
{text = "This is only part of the story.\n\nAs things are, we have all adventured into Universe of immeasurable, of incalculable, possibilities, of situations never contemplated by the trend of Evolution.",
x = display.contentCenterX,
y = display.contentCenterY + 25,
width = display.contentWidth - 25,
font = native.systemFont,
fontSize = 25,
align = "left"}
local quote = display.newText (anotherText)
quote:setFillColor (1, 1, 1)
Result.
Question 1. How to copy any text that was shown at the scene. (Android device. To save the quote in any other programm or send via messenger or paste into any search engine)
Question 2. How to set justified alignment to the text without a headache, but smiling just a little bit.
Question 3. How correctly rotate the text if the hardware was rotated left or right.
Question 4. Is it possible to some kind of spell check be bolted to user text input?
Manee Thancs.