Help with this please

Hi everyone, im starting learning from tutorials and forums and I find this project http://www.cutemachine.com/corona-sdk-tutorial/a-complete-game-made-with-corona-sdk-tutorial-part-4/

Im asking if is possible to use image instead of squares an circles and how to do that.
Thanks [import]uid: 81363 topic_id: 15373 reply_id: 315373[/import]

you can use display.newImage instead of display.newRect

[lua]display.newImage(“imagename.png”,50,50)[/lua]
where 1st item is the image name, 2nd and 3rd item denotes the x and y position on the screen. [import]uid: 71210 topic_id: 15373 reply_id: 56815[/import]

use display.newImageRect() so you can use @2x images for iPad and iPhone4 [import]uid: 5354 topic_id: 15373 reply_id: 57619[/import]

Thanks both. Sorry about answer too late.

Regards [import]uid: 81363 topic_id: 15373 reply_id: 58201[/import]