I'm developing application for Android using Adobe AIR. The problem is in that - I have to support downloading different assets for different mobile screen sized(small, normal, high, e-high) and I need to scale them. Now I'm using this approach:
[SWF( width='800', height='480', frameRate='50', backgroundColor='#000000' )]
public class SampleApp1 extends Sprite
{
public function SampleApp1()
{
super();
this.addEventListener(Event.ADDED_TO_STAGE, onAddedToStage);
stage.scaleMode = StageScaleMode.EXACT_FIT;
}
So I just set width and height of my .swf files - and they will be scaled automatically.
But!!! I have to support 4 kind of different assets - thats why I need to have 4 main classes from which I will start the entire application to provide the best user expirience.
[SWF( width='800', height='480', frameRate='50', backgroundColor='#000000' )]
public class SampleApp1 extends Sprite
[SWF( width='320', height='480', frameRate='50', backgroundColor='#000000' )]
public class SampleApp2 extends Sprite
[SWF( width='120', height='480', frameRate='50', backgroundColor='#000000' )]
public class SampleApp3 extends Sprite
[SWF( width='1200', height='760', frameRate='50', backgroundColor='#000000' )]
public class SampleApp4 extends Sprite
So, tell me please, how can I rut different main files dynamically? Or change stage size not using ExternalInterface? Or maby there is some different solution to solve this problem? Thanx for your time!