Landscape orientation for iphone / ipad

Hi Team,

I was wondering can somebody help me / us with making proper setup for landscape orientation. So far i get are different results on simulator and on devices.

Tom [import]uid: 111283 topic_id: 28483 reply_id: 328483[/import]

 orientation =  
 {  
 default = "landscapeLeft",  
 supported =  
 {  
 "landscapeLeft", "landscapeRight",  
 },  
 },  

@iPhone 3
Default.png but image is rotated 90 deg

@iPhone 4
Default@2x.png but image is rotated 90 deg

@iPad
Default-Lanscape.png

[code]
local mm = system.getInfo( “model” )

if mm == “iPhone” or mm == “iPhone Simulator” then

application =
{
content =
{
width = 320,
height = 480,
scale = “letterbox”,
fps = 60,
antialias = true,
xalign = “center”,
yalign = “center”,
audioPlayFrequency = 22050,

imageSuffix =
{
["@2x"] = 2,
},
},
}

end

if mm == “iPad” or mm == “iPad Simulator” then

application =
{
content =
{
width = 384,
height = 512,
scale = “letterbox”,
fps = 60,
antialias = true,
xalign = “center”,
yalign = “center”,
audioPlayFrequency = 22050,

imageSuffix =
{
["-Landscape"] = 2,
["@2x"] = 2,
},
},

}

end
[/code] [import]uid: 111283 topic_id: 28483 reply_id: 114957[/import]

anyone have an idea ? probably this is easy to solve [import]uid: 111283 topic_id: 28483 reply_id: 115150[/import]

really nobody else has this problem ? :slight_smile:

Tom [import]uid: 111283 topic_id: 28483 reply_id: 118960[/import]

really nobody else has this problem ? :slight_smile:

Tom [import]uid: 111283 topic_id: 28483 reply_id: 118960[/import]