I am a new user of Corona and trying to learn code. I have just started to develop a game and I want it in the Landscape view always. I have gotten my opening screen up and in the landscape view but my image is slightly too big and I want to scale it down. My files look like this below.
Also the build.settings file is that a file you create in text editor also. I wanted to look in some of the build.settings files of the example apps they have posted on the site but I can’t open them. What kind of file is it and how do you create one?
Thanks a million for your help!
Michelle
config.lua (file 1)
application =
(
content =
(
width = 320,
height = 480,
scale = “letterbox”
)
)
titlescreen.lua (file 2)
local background = display.newImage (“title.jpg”, 0, 0, true)
background.x = display.contentWidth / 2
background.x = display.contentHeight / 2
localGroup:insert(background)
return localGroup
end [import]uid: 72372 topic_id: 12018 reply_id: 312018[/import]
[import]uid: 52491 topic_id: 12018 reply_id: 43874[/import]