Specifications

153ADOBE FLEX 3
Building and Deploying Adobe Flex 3 Applications
target-player=player_version
Specifies the version of Flash Player that you want to target with the applica-
tion. Features requiring a later version of Flash Player are not compiled into the
application.
The player_version parameter has the following format:
major_version.minor_version.revision
The major_version is required while minor_version and revision are
optional. The minimum value is 9.0.0. If you do not specify the
minor_version or revision, then the compiler uses zero.
If you do not explicitly set the value of this option, the compiler uses the
default from the flex-config.xml file. The value in flex-config.xml is the version
of Flash Player that shipped with the SDK.
This option is useful if your application’s audience has a specific player and
cannot upgrade. You can use this to “downgrade” your application for that
audience.
This option is commonly used in conjunction with framework RSLs. For more
information, see
“Targeting Flash Player versions” on page 295.
theme filename [...]
Specifies a list of theme files to use with this application. Theme files can be
SWC files with CSS files inside them or CSS files.
For information on compiling a SWC theme file, see “Using Styles and Themes
on page 589 in Adobe Flex 3 Developer Guide.
title text
Sets metadata in the resulting SWF file. For more information, see “Adding
metadata to SWF files” on page 155.
use-network=true|false
Specifies that the current application uses network services.
The default value is true.
When the use-network property is set to false, the application can access
the local filesystem (for example, use the
XML.load() method with file: URLs)
but not network services. In most circumstances, the value of this property
should be
true.
For more information about the use-network property, see “Applying Flex
Security” on page 29.
use-resource-bundle-metadata=true|false
Enables resource bundles. Set to true to instruct the compiler to process the
contents of the
[ResourceBundle] metadata tag.
The default value is true.
For more information, see “Localizing Flex Applications” on page 1101 in
Adobe Flex 3 Developer Guide.
This is an advanced option.
Option Description