scene on iPhone and iPad slightly off

I’m working on an app for kids and spelling. I thought I had figured out how to build for the iPad and iPhone at the same time by using the config file and letterbox, but I guess I was wrong. I’m targeting the iPad, but I want my app to look good on the iPhone too and things look fine except that the right edge of my images get cut off on the iPhone. I’m attaching screenshots. I rather not have to resize all of the images if I can help it. Does anyone have an idea of what I should read or try? Here is a link to some screen shots.

http://technologyskills.net/anscaHelp/

Thanks for any advice or help. [import]uid: 48122 topic_id: 11298 reply_id: 311298[/import]

Have you got something like this in your config.lua:

[code]application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”,

},
}[/code]

[import]uid: 29676 topic_id: 11298 reply_id: 41035[/import]

yeah, that’s what I have. I double checked by using yours and it didn’t make a difference. [import]uid: 48122 topic_id: 11298 reply_id: 41105[/import]

Here is my config.lua file:

if system.getInfo("model") ~= "iPad" then  
 application =   
 {  
 content =  
 {  
 width = 320,  
 height = 480,  
 scale = "letterbox",  
  
 imageSuffix =   
 {  
 ["@2x"] = 2,  
 },  
 },  
 }   
else  
 application =   
 {  
 content =  
 {  
 width = 384,  
 height = 512,  
 scale = "letterbox",  
 imageSuffix =   
 {  
 ["@2x"] = 2,  
 },  
 },  
 }  
end  

My backgrounds are all 512x384 and I center them and edges get cut off on the iPhone. Just don’t put anything important there.

There are a couple of places in my code where I have to test to see if I’m on an iPad and add 16 pixels
[import]uid: 19626 topic_id: 11298 reply_id: 41108[/import]

Thanks for the help. Your code didn’t make a change either. Maybe I’ll just have to adjust my images to create a larger blank space around the work area.

I appreciate the attempts guys. [import]uid: 48122 topic_id: 11298 reply_id: 41117[/import]