[Simulator] Option to specify startup orientation

Corona Version: 0.5 (Simulator 0.3)
System Version: OSX 10.5.8
Computer HW Info:
iPhone Generation: iPod Touch 2nd Gen
iPhone Firmware Version: 3.1.2

Have the option to specify the start up orientation (i.e. LandscapeLeft, LandscapeRight, etc.) of the simulator window.

When testing an app in an orientation other than the default (i.e. portrait) it’s annoying having to always rotate the simulator window after startup. Allowing the user to set the startup orientation would allow testing of apps to progress that much quicker. [import]uid: 1581 topic_id: 196 reply_id: 300196[/import]

You should already be able to do this in the simulator by specifying the default in your build.settings:

[code]settings =
{

orientation =
{
default = “landscape”,

},

}[/code]

If portrait orientations aren’t supported at all, you can use this:

[code]settings =
{

orientation =
{
default = “landscape”,
supported =
{
“landscapeRight”, “landscapeLeft”
},

},

}[/code] [import]uid: 14598 topic_id: 196 reply_id: 35568[/import]