Monday, December 28, 2009

How to set width height in flex ActionScript project.

mxmlc -default-size 640 480 filesname.as

or

package
{
[SWF(width="300", height="200")]
public class MyApp extends Sprite
{
...
}
}

Followers