- Download and install CORONA SDK from http://www.coronalabs.com/products/corona-sdk/
- There are many IDE’s for working with the Corona SDK. Some good ones are –
– Corona Project Manager (CPM) – LuaGlider – Corona Complete Install one of these IDEs.
Creating a simple app with the help of LuaGlider –Step 1 –
– Launch LuaGlider Window – Tap on the New Project Icon (Top Left Corner) and window will look like – – Click Next – give Project Name, Project Location and Project Folder – Click Finish and window will look like – Step 2 – Once complete Step 1 , project window should look like –– Corona applications may be configured through two optional Lua files, which should be saved to project folder along with main.lua file : – config.lua – Handles global content scaling and alignment for multiple screens. – build.settings – Handles build options like the screen resolutions, the setting of Info.plist values for iOS and/or application permissions for Android.
– Now, Select main.lua, write these lines – local textObject = display.newText(“Hello Corona !!”, 0, 0, native.systemFont, 40) — textObject.x = display.contentWidth / 2 textObject.y = display.contentWidth / 4 textObject:setTextColor(255,255,255) Conventions used in above code – 1- local is used for creating local object 2- display.newText – for inserting text along with font name and font size 3- textObject.x – distance from left side , textObject.y – distance from top Step 3 – Build and run – Tap on the Run Icon (Top Left Corner) Output –
0 Comments