text sliding problem in new version of Corona SDK

Hi 

I am working on simple text showing app of book. In that i used display.newParagraph that working properly in old version of Corona sdk ie.  Version 2013.1137 (2013.6.7), But in new version ie. Corona sdk ie.  Version 2013.2076,    it changes all position of paragraph.  You can see this attachment that showing both output.

How can i resolve this problem please help me.

Thanks

It’s because as of build 2076 Corona is using it’s new graphics 2.0 library.  

One of the changes is that the first 2 parameters when creating an object no longer refers to the top left of an object, but its centre point.i

There are other changes too, and I suspect one of these has caused your problem. If you don’t need to use any of the graphics 2.0 functionality, you can force it to use v1.0 compatibility mode:

http://www.coronalabs.com/blog/2013/11/20/tutorial-fast-migration-of-graphics-1-0-based-projects-to-graphics-2-0/

yes i changed it graphicsCompatibility = 1 but it remain same.

Where did you source display.newParagraph from? It’s not an official part of our api.

I used third party api ie. crawlspaceLib.lua file.

That might be part of the problem. IIRC the crawlspace library overrides several Corona functions, which is not recommended.

thanks for your reply.

Any other API or any way to do this? Because i have more text to display, So please give me some best way that you know.

It’s because as of build 2076 Corona is using it’s new graphics 2.0 library.  

One of the changes is that the first 2 parameters when creating an object no longer refers to the top left of an object, but its centre point.i

There are other changes too, and I suspect one of these has caused your problem. If you don’t need to use any of the graphics 2.0 functionality, you can force it to use v1.0 compatibility mode:

http://www.coronalabs.com/blog/2013/11/20/tutorial-fast-migration-of-graphics-1-0-based-projects-to-graphics-2-0/

yes i changed it graphicsCompatibility = 1 but it remain same.

Where did you source display.newParagraph from? It’s not an official part of our api.

I used third party api ie. crawlspaceLib.lua file.

That might be part of the problem. IIRC the crawlspace library overrides several Corona functions, which is not recommended.

thanks for your reply.

Any other API or any way to do this? Because i have more text to display, So please give me some best way that you know.