Testing on windows

Hello, since the window simulator only supports android, and since android ignore the default orientation, how can I test a vertical game on windows other than making it start and then rotating the simulator?

Also I see that on window the resolution is not 480,320 (iphone) I can live with it but one of the reason for buying corona would be to develop on windows and then compile on mac at the end, is there a way to customize the simulator?

Thank you very much [import]uid: 118481 topic_id: 21861 reply_id: 321861[/import]

Use this for your build.settings (for portrait view)

[code]
settings =
{
orientation =
{
default = “portrait”,
supported =
{
“portrait”, “portraitUpsideDown”
},
},
}
[import]uid: 84637 topic_id: 21861 reply_id: 86923[/import]