mxmlc is Adobe's application compiler that compiles SWF files from ActionScript and MXML source files.
Questions tagged [mxmlc]
206 questions
0
votes
1 answer
How to link against SWC when source is in project?
I would like to compile my view classes into an SWC from flash, and compile the rest of the application using mxmlc (avoiding recompiling through the IDE). However, because the view classes (source) are in the project class path, mxmlc gives them…

lettertwo
- 2,650
- 1
- 19
- 9
0
votes
0 answers
mxmlc - Warning: Failed to parse corrupt data - once project reaches certain size?
I have a long running project which is compiled as modules for release, but the test suite potentially runs all the tests for every module.
The project is quite large - currently around 1250 tests cases (classes), and pulling in around 4000 classes…

Stray
- 1,689
- 1
- 11
- 19
0
votes
1 answer
Including configuration files while compiling a Flex application with MXMLC
I'm using:
- Flex SDK 3.5.0
- Parsley 2.2.2.
- Flash Builder 4
Down in my src folder (which is configured as part of the source path in the Flash Builder), I have a logging.xml which I configure via Parsley:
…

Daniel
- 1
- 1
- 1
0
votes
1 answer
How to make class ASDoc for MXML file
Is there a way to add a class ASDoc for an MXML document similar to the ASDoc for an AS3 class?
MyClass.as ASDoc:
/**
* This shows up when hovering over the class in Flash Builder.
* The Group class is the base container class for visual…

1.21 gigawatts
- 16,517
- 32
- 123
- 231
0
votes
2 answers
Error: Definition flash.net:NetworkInfo could not be found while using import flash.net.NetworkInfo
I am trying to build a swf file using actionscript code. I have downloaded Flex SDK. Now I am trying to compile .as file. It works fine and compiles into .swf file using the following command from the bin folder of Flex Home.
.
Command: /mxmlc…

user3213851
- 1,068
- 2
- 12
- 24
0
votes
1 answer
Get Fonts through Flash ans JS
I have to check all available fonts istalled on user's system. Therefore, I try to use this tutorial. I compiled Fontlist.as with mxmlc compiler and included a JS file, which contains the populateFontList(fontArr) function.
I embed the SWF file…

Daniel
- 3
- 5
0
votes
1 answer
What is the difference between mxmlc and amxmlc when compile an swf of air mobile project for ios?
I could use the same way compile an swf with mxmlc and amxmlc:
amxmlc -load-config obj\config.xml
mxmlc -load-config obj\config.xml
But, What is the difference?

colinzcli
- 71
- 1
- 1
- 7
0
votes
1 answer
Flex compiler omitting classes
I noticed that the resulting swf file of an mxmlc compilation is missing classes that are not used but still given to the compiler via the -source-path option.
How can this be avoided?
Also, how does the compiler find out which classes are not used?

clamp
- 33,000
- 75
- 203
- 299
0
votes
2 answers
Build flex library using mxmlc
I want to build a flex library project directly through the mxmlc compiler. My library has one .as file and it is under a package call com.test
package com.test { public class Main { public function Main(){...
I run the following command on the…

ANJ
- 301
- 1
- 2
- 14
0
votes
2 answers
branding Bigbluebutton looking for BBBDefault.css file
I've got bigbluebutton latestcode forked and cloned locally. I'm in process of customization and branding. I found handful template css files under
~/dev/bigbluebutton/bigbluebutton-client/src/branding/css directory.
I compiled some of these .css…

girishsan101
- 11
- 2
0
votes
1 answer
Can't embed XML in FlashDevelop
I am trying to embed some xml into my application but I get the following error
Fault] exception, information=TypeError: Error #1090: XML parser failure: element is malformed.
Here is my code.
package
{
import com.objects.EngineApi;
…

numerical25
- 10,524
- 36
- 130
- 209
0
votes
1 answer
How to Determine an mxmlc-compiled SWF File Was Built in Debug or Release Mode
First of all, I'm NOT talking about if the player is a debugger or not. (EDIT: it IS actually related to the debugger player)
I use mxmlc to compile a very simple swf file with -debug=false:
mac-108:tmp admin$ "/Applications/Adobe Flash Builder…

Peter Lee
- 12,931
- 11
- 73
- 100
0
votes
2 answers
How can I speed up Ant Compilation in FDT / Flex Builder
Is there any way to speed up MXMLC compiles using Flextasks in Ant in Eclipse. Compared to FDT and Flex Builder's in-built compilation, it is painfully slow.

Undistraction
- 42,754
- 56
- 195
- 331
0
votes
1 answer
Trace Flash Builder compiling commands
is there a way to trace the compiler command for flash builder? I mean, I want to know the parameters and files that is compiling internally when I click "build" on FB.
Basically I moved a project to Flash Builder, and everything works fine but I…

Rodrigo.C
- 1,123
- 2
- 10
- 22
0
votes
1 answer
How to pass command line options to .mxml file when compiling using mxmlc?
I've a batch script which is used to build my flex project. This script sets all the necessary info required to build the project. In this script .mxml file is compiled using mxmlc.I want to add an argument which can be then read by .mxml file. This…

mAc
- 199
- 1
- 3
- 9