Hello!
I have a large text.
So, I split it to 2 or more newRetinaText and use the contentHeight to position the second after the first and so on.
If the device screen resolution is as mentioned in config, there is no problem.
But, if there is scaling, then the distance is larger!
I have test it on simulation and Android device, using the CoronaSDK 2012.760.
[code]
local paragraph1 = display.newRetinaText(txtParagraph1,0,0,300,0,native.systemFont,14)
paragraph1:setReferencePoint( display.TopLeftReferencePoint)
paragraph1.x = 10
paragraph1.y = 10
local paragraph2 = display.newRetinaText(txtParagraph2,0,0,300,0,native.systemFont,14)
paragraph2:setReferencePoint( display.TopLeftReferencePoint)
paragraph2.x = 10
paragraph2.y = paragraph1.y + paragraph1.contentHeight + 10
local paragraph3 = display.newRetinaText(txtParagraph3,0,0,300,0,native.systemFont,14)
paragraph3:setReferencePoint( display.TopLeftReferencePoint)
paragraph3.x = 10
paragraph3.y = paragraph2.y + paragraph2.contentHeight + 10
[/code] [import]uid: 38658 topic_id: 22858 reply_id: 322858[/import]