Corona SDK Hello World tutorial
Hello, as most of you know, each first tutorial in a new language or program is the Hello World program.
First of all, support us by installing our free app : 3Rocks
Also in this tutorial I will guide you on downloading and installing Corona SDK and also creating your first script, this tutorial is created on a mac, but all the steps are the same for windows.
1. Go to this URL and enter your data, then download Corona SDK.
2. Go to the samples directory and duplicate one of the folders, i duplicated the sprites/junglescene folder, than rename the folder, i renamed mine to “empty project”.
3. Now go into the folder and delete some of the files, i selected the files which you need to delete :
4. We now need an “Hello World” image to use, you can use mine, save it in your project folder :
Right now you should have this files in your project directory :
5. If everything it’s ok, open the main.lua file and remove everything from it.
6. Add this (assuming that you saved the image i provided) :
local image = display.newImage(“h.jpg”);
7. Open the corona simulator, and navigate to your project, select the main.lua file and load it.


