----------------------------------------------------------------------------------------- -- -- main.lua -- ----------------------------------------------------------------------------------------- -- Your code here display.setStatusBar( display.HiddenStatusBar ) local dispObj_1 = display.newImageRect( "world.jpg", 320, 480 ) dispObj_1.x = display.contentCenterX dispObj_1.y = display.contentCenterY local dispObj_2 = display.newImageRect( "Icon-60.png", 60, 60 ) dispObj_2.x = 0 dispObj_2.y = 0 local dispObj_3 = display.newImageRect( "Icon-60.png", 60, 60 ) dispObj_3.x = display.contentWidth dispObj_3.y = 0 local dispObj_4 = display.newImageRect( "Icon-60.png", 60, 60 ) dispObj_4.x = 0 dispObj_4.y = display.contentHeight local dispObj_5 = display.newImageRect( "Icon-60.png", 60, 60 ) dispObj_5.x = display.contentWidth dispObj_5.y = display.contentHeight local dispObj_6 = display.newImageRect( "Icon-60.png", 60, 60 ) dispObj_6.x = display.contentWidth/2 dispObj_6.y = display.contentHeight/2