03-20-2012 08:10 AM
In the manifesto there is a line:
Entry-Point-Orientation: portrait
Where orientation change? I want the application to run in landscape mode.
03-20-2012 08:12 AM
03-20-2012 08:46 AM
This comes from the "application descriptor" file, often called application.xml but sometimes named for your app, like MyCoolApp-app.xml.
There's a section in an <initialWindow> element that looks something like this:
<initialWindow>
<content>MyCoolApp.swf</content>
<visible>true</visible>
<autoOrients>false</autoOrients>
<aspectRatio>landscape</aspectRatio>
</initialWindow>
You can remove <aspectRatio> and change <autoOrients> to true, or make other changes.
See the AIR documentation for more.
03-21-2012 06:43 AM - edited 03-21-2012 06:45 AM
If I use landstsape
I get this:
03-21-2012 07:50 AM
03-21-2012 08:06 AM
03-21-2012 08:29 AM
03-21-2012 08:35 AM
03-21-2012 08:37 AM
03-21-2012 09:15 AM