1 min read

Tutorial - develop an application using Corona Framework


Corona SDK is a software development kit that lets developers create graphic cross-platform apps (for iOS and Android) using Lua on top of C++/OpenGL. Corona makes it very easy to roll out cross-platform games and graphic-intensive apps. It even includes a physics engine.
Here's a small tutorial on How to develop simple application using Corona Framework. This is just the beginning. The SDK provides many advanced features as well using which you can create amazing and addictive games and apps.
Requirements -

               - 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 -


Exciting Announcements at WWDC 2012: New MacBook Pro, Mountain Lion, and iOS 6

Exciting Announcements at WWDC 2012: New MacBook Pro, Mountain Lion, and iOS 6

The cat is finally out of the bag. Apple announced some amazing new hardware and software at the WWDC 2012 keynote. There were some expected...

Read More

How Businesses can Use Twitter 

Have you ever noticed just how many businesses and brands are starting to pop up on the various different social media platforms and want to know if...

Read More

How Golang is thriving in the software industry

Choosing the right programming language is the most crucial thing for the developers in today’s time. You need to choose a language which is robust...

Read More