main.lua
-- Create a grey background local background = display.newRect( 0, 0, 320, 480 ) background:setFillColor( 0.5 ) -- Create two squares local rect1 = display.newRect( 0, 0, 50, 50 ) local rect2 = display.newRect( 0, 0, 50, 50 ) -- Place the squares along the top edge; offset the second square with "display.screenOriginX" rect1.x = 25 rect2.x = 25 + display.screenOriginX rect1.y = 25 rect2.y = 150