12-31-2010 05:59 PM
Hi,
I don't have time to support both landscape and portrait orientation for my app now... :-(
I used the trick, like set y = 601 to hide things. ( I know visible property, but for same raison, don't like to use it )
But I just realize that if the playbook turns to portrait, and the device auto-size itself, my trick will not work any more... ( and it will be very funny .... unfortunately, simulator did not support orientation for testing )
So, for the xml file configuration, there is a setting like:
<autoOrients>false</autoOrients>
to avoid auto orientation.
But, I cannot find a config setting to "force" and frizz the screen always on landscape (1024 x 600) mode.
What is the setting to force the app always on 1024 x 600 ?
Thanks.
Solved! Go to Solution.
12-31-2010 06:35 PM
You can do it in the root Sprite parameter, by doing
[
SWF(height="1024", width="600", frameRate="30", backgroundColor="#000000")]
Most people are locking in landscape mode until the simulator supports it or they get their PB.
12-31-2010 06:41 PM
Thanks jtegen.
(
I already did that, but just want to double check to be sure that it will be locked in landscape )