vote up 1 vote down star
1

Although the Flex command-line compiler (mxmlc) can compile MXML+ActionScript files into SWFs, I need specific insights into its capabilities, via the command-line switches.

  • Configure which language you're writing in, ActionScript 2 / 3
  • Configure which Flash Player version you're targetting, 7 / 8 / 9 / 10
  • Configure what frames of the movie, contain what ActionScript code.

An article covering Mxmlc, an intro to the Flex SDK.

flag

closed as no longer relevant by Jeremy Rudd Jan 10 at 3:20

3 Answers

vote up 2 vote down check
$> mxmlc --help target-player

-target-player <version>
    specifies the version of the player the application is targeting.
    Features requiring a later version will not be compiled into the
    application. The minimum value supported is "9.0.0".

You can't define the language afaik - mxmlc version 3 is an actionscript 3 compiler only. There may be some backwards compatibility, but it's not a combined AS2 and 3 compiler.

I'm not even sure what your third point actually means, or in fact what you're asking overall.

link|flag
vote up 2 vote down

Though not a direct answer to your question, it's interesting to note that the following arguments to MXMLC will allow you to write AS1-style code:

-strict=false -as3=false -es=true

With those arguments, you'll be able to extend via prototype again and the compiler won't use strict mode. It's a fun way to "extend" the language and play with the JS-like capabilities not normally used with AS3.

link|flag
vote up 1 vote down

Using the flex complier is not the same as making something in flash, you do not put specific code into specific frames. Flex apps only have 2 frames anyway.

If you wished to compile your code for AS2 then you'd need to use the mxmlc that was build for flex 2, if you’re using the latest mxmlc then it does it for AS3.

If you are coding in AS3 then you must target flashplayer 9 or above.

link|flag
Flex 1.x used AS2. Flex 2 was the first compiler to support AS3. – joshtynjala Jan 9 at 20:02
yip your right, I forgot about 1.x as flex 2 was so short lived :) – kenneth Jan 12 at 9:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.