views:

37

answers:

1

Hi guys....

I was wondering if there are ways to set the width and height in a pure AS3 project...I appreciate any help....Thanks

+2  A: 
[SWF(backgroundColor="0xec9900" , width="950" , height="480")]
public class Main extends Sprite
{}

or

[SWF(backgroundColor="0xec9900" , widthPercent="100" , heightPercent="100")]
public class Main extends Sprite
{}
PatrickS
Nice. Thanks for the help
Jerry