Developing iPhone/iPad/Android Games with Corona: Creating Animations
In this demonstration, we will take our existing Hello World project and add some animation. To get started, we have the existing code: local textObj = display.newText(“Hello World!”, 50, 50, nil, 24) textObj:setTextColor( 255, 255, 255) local mybutton = display.newImage( “button.png” ) mybutton.x = display.contentWidth/2 mybutton.y = display.contentHeight-75 local h = textObj.height local w = […]
Word Press Tutorial: Setting up a sticky post
Setting up a sticky post (a post that stays at the top of the page) is incredibly easy… if you have the right plug-in! It is possible to create sticky posts without a plug-in, if you enjoy doing PHP coding. I happen to like coding in PHP, but my wife and daughter don’t, so here […]
Developing for the iPad – Hello World
How to make a Hello World app on the Apple iPad.