|
|
Question : Setting the swf stage dimensions using mtasc compiler
|
|
How/Where does one set the Stage.height and width when constructing swfs using the mtasc compiler? Is there a command-line option that does this (and presumably one for framerate as well?) ? The macromedia flash 8 GUI has a place to set this but I am looking for how to set this using the mtasc compiler.
|
Answer : Setting the swf stage dimensions using mtasc compiler
|
|
This is the command line that sets the stage
-header width:height:fps:bgcolor (bgcolor is optional 6 digit hex code)
For example, if you call MTASC with the following arguments :
mtasc -swf tuto.swf -main -header 800:600:20 Tuto.as
The first parameter "-swf tuto.swf" set the output file, the third parameter "-header 800:600:20" tells MTASC to create a new SWF of size 800x600 at 20 FPS. The second parameter "-main" tells MTASC to execute the entry point function main once all classes are initialized, and the other parameter is the file to compile. If you need to compile several files you can list them in the commandline without any problem.
|
|
|
|