NAME
makeswf - actionscript compiler
SYNOPSIS
makeswf [OPTIONS] <frame.as> ...
DESCRIPTION
makeswf is a command line interface to
the Ming library actionscript compiler.
Bytecode resulting from compilation of each given source file
will be stored in a separate frame of the output.
OPTIONS
- -o <output>
- Write SWF file to <output>. Default is ``out.swf''.
- -s <width>x<height>
- Set output frame size.
- -r <frame_rate>
- Set output frame rate (defaults to 12).
- -v <swfversion>
- Set output SWF version (defaults to 6).
- -c <compression_level>
- Set output compression level (defaults to 9).
- -I <dir>
- Add <dir> to the include search path. The option is
passed to the C preprocessor.
- -D <macro>[=<def>]>
- Define <macro>. The option is passed to the C
preprocessor.
- -i <library.swf>:<sym>[,<sym>]>
- Import named symbols from the given SWF file. The file is not
required to be found at compile time, and no check is performed to
ensure symbols are therein defined. It will be loaded at runtime,
so make sure to specify the correct runtime path to find
it.
AUTHOR
Written by Sandro Santilli <strk@keybit.net>