In corona SDK how to add label(text) to images
I have created my image as follow
local item = display.newImageRect('images/foo.png',70,70);
item.x = 50;
item.y = 50;
How to add a text to the image?
Many Thanks
|
|
|
To add text to the image, so it appears to "stick" to the image, you could create the object (as you have) and also the text object directly above it. Then, create a group and stick them both in it. Here is an example of how that could be done:
Then, to move it around, just modify the x/y of 'myGroup'. Hope that helps! |
|||
|
|
|
You can't add text directly to an image, but what you can do is create a text display object: http://developer.anscamobile.com/content/displaynewtext Note that the default text doesn't increase resolution for Retina displays, so you probably want to use this code: http://developer.anscamobile.com/forum/2010/12/17/easily-make-your-text-sharp-retina-displays |
|||
|
|