swap x for y

Trying to do my first app with Corona and it will be a small game played horizontally, the phone will be in a lying position.
Like when pressing rotate left one time in the Corona simulator.

Is there a simple way to just swap the x and y references so while coding the game when I say myFootball.x = 300
the ball will be move towards the bottom on a standing phone?

Thanks [import]uid: 124497 topic_id: 22468 reply_id: 322468[/import]

Have a look at
http://developer.anscamobile.com/content/configuring-projects

you need to set
[lua]
orientation =
{
default = “landscapeLeft”,
supported =
{
“landscapeLeft”, “landscapeRight”,
},
},[/lua]
in build.settings file [import]uid: 64174 topic_id: 22468 reply_id: 89619[/import]

Cool, thanks [import]uid: 124497 topic_id: 22468 reply_id: 89639[/import]