display.newText not in position on Device

Hello!

I am using display.newText with wrap feature to place large text. As display.newText cannot display text longer than 2048px, I have to split with many display.newText positioning one after other.
The problem is that on Device, the display.newText objects have distance between them!
It does not have to do with scaling from config.lua.
To position the text, I am using the previous text coordinates. Also tried contentHeight with no luck.

local txtParagraph1 = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sagittis mi ut dictum. Sed ut nibh quis quam luctus porttitor nec in eros. Vivamus quis luctus libero. Aliquam nunc ipsum, pellentesque vel vehicula ut, consectetur ut nisl. Aenean varius rhoncus congue. Suspendisse in purus lectus. Vestibulum sed est purus."  
local txtParagraph2 = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sagittis mi ut dictum. Sed ut nibh quis quam luctus porttitor nec in eros. Vivamus quis luctus libero. Aliquam nunc ipsum, pellentesque vel vehicula ut, consectetur ut nisl. Aenean varius rhoncus congue. Suspendisse in purus lectus. Vestibulum sed est purus."  
  
local myParagraph1=display.newText(txtParagraph1,0,0,300,0,nil,14)  
myParagraph1:setReferencePoint( display.TopLeftReferencePoint)  
myParagraph1.x = 10  
myParagraph1.y = 10  
  
local myParagraph2=display.newText(txtParagraph2,0,0,300,0,nil,14)  
myParagraph1:setReferencePoint( display.BottomLeftReferencePoint)  
myParagraph2:setReferencePoint( display.TopLeftReferencePoint)  
myParagraph2.x = 10  
myParagraph2.y = myParagraph1.y  

CoronaSDK Build 2012.773 [import]uid: 38658 topic_id: 23824 reply_id: 323824[/import]

FOUND what the problem has to do with:

The problem is that the text contentHeight is not the real! The text takes smaller place.

So, waiting for a daily build?
[import]uid: 38658 topic_id: 23824 reply_id: 95961[/import]

There are several bug reports with text problems on 773.

[import]uid: 19626 topic_id: 23824 reply_id: 95996[/import]

robmiracle, the same problem occurs since earlier releases and if I remember correct, since the first release of newRetinaText. [import]uid: 38658 topic_id: 23824 reply_id: 96064[/import]

Any news about this?
I have post it as a bug (case 113145).

thanks [import]uid: 38658 topic_id: 23824 reply_id: 105510[/import]

It has been assigned to someone to verify so hopefully you’ll get a reply from someone soon :slight_smile: [import]uid: 52491 topic_id: 23824 reply_id: 105587[/import]

Thank you Peach!

Njoy your days in Ansca HQ! :slight_smile: [import]uid: 38658 topic_id: 23824 reply_id: 105589[/import]

Thanks Photiscta, I am having a good time here so far :slight_smile: [import]uid: 52491 topic_id: 23824 reply_id: 105765[/import]

This was confirmed to be a bug and has been passed onto the engineering team. [import]uid: 84637 topic_id: 23824 reply_id: 106083[/import]

Hello!

Do you have any news? I am seeing it below in the bug list, buts its a major problem when you have to display long text… just you cannot!
We have to display the text as images and put them one after another, which makes the app large in storage.
Pls., take a look asap.
Thank you. [import]uid: 38658 topic_id: 23824 reply_id: 113950[/import]