Ok, let me break this down as you are talking about a few different things and steps.
First of all you do not need to edit the build.settings.
You will simple want to put the build.settings into your App’s directory along with the main.lua and the config.lua.
If you do not have a main.lua and a config.lua create those.
The orientation and/or screen size for the ipad can be adjusted from within the config.lua
Insert this code for the ipad into config.lua for a horizontal / landscape screen. You will of course have to have the correct build.settings for horizontal.
[lua] application =
{
content =
{
width = 1024,
height = 768,
scale = “none”,
fps = 60,
antialias = true,
},
}[/lua]
The second part is you may need to center your images and/or set reference points to get them to show on the screen correctly.
So once you set your config.lua you may have better results.
If not I sometimes center objects on screen before I place them to make sure they are on the screen. This makes sure I have my code correct and the object is indeed there. This can save you some time troubleshooting problems as a practice.
Here is an example of centering an object.
You can see i’m simply calling that I want to display my rectangle at 50% of the display width and 50% of the display height.
I’m pretty sure objects reference points, that is the point the align to is the center of an image or rectangle unless you set it otherwise.
[lua]local background = display.newRect(-130,220,1026,680)
background.x = display.contentWidth * .5
background.y = display.contentHeight * .5[/lua]
Finally the last question I could not give you an example, it certainly is doable, but you will actually be coding and creating your own status bar to do it. If you are new to Corona and Lua, the Timer tutorial done by AnscaMobile packaged with the sdk would be the starting point for something like this. Along with the placing objects on the screen.
Cheers
[import]uid: 50045 topic_id: 9523 reply_id: 34891[/import]