How to get the ANDROID SDK Version? How to get your Phone's IP Address in...
Please checkout the “LogCat” for the output. If you don’t know about Logcat In Eclipse “Go to Window->showView and search for Logcat”. package com.ip; import android.app.Activity; import...
View ArticleHow to Implement Box2D in Adobe AIR?
Everyone will be fascinated how flash games are built on the web that implements the real world physics. Well for your information there are a lot of physics engines available. One of them is the...
View ArticleHow to dynamically add controls in Adobe AIR or Flex?
Below example shows how to add a label control dynamically in AIR or FLEX. var L : Label = new Label(); L.addEventListener(MouseEvent.CLICK,LabelListener); L.name = “my_label_name”; L.text = “my Text”;...
View ArticleHow to sign Android project apk
This is a very tricky part and initially i was also ran in to strange problems . Before uploading to android market you must do the following steps. Create a Certificate Signing your application apk...
View ArticleHow to avoid OutOfMemory Exception in android?
Hello all.. The OutofMemory exception is a common exception in android when you select an image from a gallery or load Big Images in android. There are different methods to solve this problem. Today I...
View ArticleBuilding games for android and iPhone
Today I will talk about building games for android and iPhone. There are a lot of SDK’s available for building games over the internet and I am here to talk about the CORONA SDK. Corona SDK is a...
View ArticleHow to draw a geometrical Line using corona SDK?
This is actually very simple in corona. local function drawLine( event ) if(event.phase == "ended" ) then line = display.newLine(event.xStart, event.yStart, event.x, event.y) line:setColor(255,255,0)...
View ArticleHow to inherit from other styles or how to extend your own styles in android?
Hello all…. I have covered many tutorials on styles on how to implement and use them. Today I will show you how to inherit from other styles or how to extend a style already created by you and use it...
View ArticleHow to enable retina Mode in Corona SDK? or How to work with images in retina...
To enable retina mode in your application you have to first find the config.lua file in your project folder. Then edit this file to include the contents like this. application = { content = { width =...
View Article