please help me...

Hey guys, please help me, i like to start lerning corona, but even i start a tutorial, something goes wrong because the most of them are for graphics 1,0.

i can not seperate the tutorials and all the wrong guids and error messages make my mind confusing.

Do you have some tutorials or guids for me? thank you :smiley:

It is a problem with Corona, especially at this time. One start point may be to use v1 compatibility mode which you can turn on by adding a line to config.lua

http://docs.coronalabs.com/guide/graphics/migration_v1.html

This is used so Graphics 1.0 apps can be built under 2.0 (I guess), and it should fix most of  your problems. What you want to avoid is the old sprite library which isn’t available at all.

I think this is noticeable by sprites being done by sprite.newSprite() rather than display.newSprite() - sprite.* was before my time :slight_smile:

It doesn’t matter too much that you learn 1.0 rather than 2.0 - the main differences are the ‘anchor’ point of display objects, the colours now use 0-1 rather than 0-255 and setFillColor replaces setTextColor.

Graphics 2.0 offers new stuff of course, but that’s extra stuff to learn once you have the basics.

THAT is verry helpful thank you sooo much, you are right.

It is a problem with Corona, especially at this time. One start point may be to use v1 compatibility mode which you can turn on by adding a line to config.lua

http://docs.coronalabs.com/guide/graphics/migration_v1.html

This is used so Graphics 1.0 apps can be built under 2.0 (I guess), and it should fix most of  your problems. What you want to avoid is the old sprite library which isn’t available at all.

I think this is noticeable by sprites being done by sprite.newSprite() rather than display.newSprite() - sprite.* was before my time :slight_smile:

It doesn’t matter too much that you learn 1.0 rather than 2.0 - the main differences are the ‘anchor’ point of display objects, the colours now use 0-1 rather than 0-255 and setFillColor replaces setTextColor.

Graphics 2.0 offers new stuff of course, but that’s extra stuff to learn once you have the basics.

THAT is verry helpful thank you sooo much, you are right.