Questions tagged [mxmlc]

mxmlc is Adobe's application compiler that compiles SWF files from ActionScript and MXML source files.

206 questions
1
vote
2 answers

Making image move in FLEX/AS flash

In the following code ,onclick of fruits image how to make the fruits image drop in the box image with proper effect(i.e, dropping of the fruit image into the box image should be shown)..
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
2 answers

app fails to compile with mxmlc command-line but works with flash builder IDE

I have this flex app (it's a flex project created from flash builder), and it compiles fine when I build it from the IDE. it fails to compile when I do it from command line through mxmlc. I am invoking the mxmlc at the location…
charan
  • 13
  • 1
  • 4
1
vote
1 answer

ExternalInterface API in flex

How to resolve the following error in the mxml program? The error is Loading configuration file /opt/flex/frameworks/flex-config.xml /home/tom-j/programs/flex/html/aa.mxml(17): Error: Access of undefined property addBody. …
Naveen
  • 230
  • 1
  • 3
  • 12
1
vote
3 answers

How to determine what files MXMLC compiles

I need a way to programmatically record what source files are consumed in an MXMLC compile. Ideally there would be a flag to pass to MXMLC to have it report the complete list of source files it is compiling, but there doesn't seem to be such a…
Quinn Bailey
  • 200
  • 7
1
vote
1 answer

How do I build an Adobe AIR application using Visual Studio Team Services

I have a client with an application that is written in MXML and ActionScript 3 and is deployed as a desktop app using Adobe AIR. The client would like me to implement automated builds and releases for this application and currently uses Visual…
Joe Newton
  • 449
  • 1
  • 5
  • 11
1
vote
1 answer

Reduce unwanted noise

In the below code sometimes when microphone is not connected some noise is generated and the system just keeps on buzzing the same sound.Whats wrong with the code below and how to reduce the unwanted noise. Should i set myMic.setLoopBack(false) in…
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

Flex play mp3 sound

Inn the below code i have placed my mp3 in the src directory where this mxml file resides.So when the swf is loaded i can see the button i am not able to get the mp3 playing is that something to do do with the path
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

swf not working in Internet explorer

Why is the below code not working on IE.IS that am i missing anything here.Please let me know
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

permissions in flex/Action script

I have two applications which access camera and mic written in flex.When these two resources had to be used it ask flash player asks for the use of system resource Allow or Deny Is there any way to by pass this.In gmail->settings->chat->view…
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

Microphone progress bar in action script

Any microphone action script code which indicates a progress bar when there is activity on microphone
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

Microphone in flex/AS

Can any one point me to a small code for testing a microphone which is written in flex/AS Thanks
Rajeev
  • 44,985
  • 76
  • 186
  • 285
1
vote
1 answer

trace() not written to flashlog.txt

I'm using mxmlc on a Mac terminal to compile an AS 3.0 project and then I run it by opening the Main.swf in Flash Debugger 10. Now, errors get written to the flashlog.txt just fine but my trace statements don't : ( I have mm.cfg in…
Matt N.
  • 1,239
  • 2
  • 11
  • 26
1
vote
1 answer

mxmlc does not include *.ane files during command line build

Here is the command that I am using to build an android application. mxmlc +configname=airmobile -output Example.swf -locale=en_US -source-path+=D:\fb_projects\Example\localeB\{locale} -library-path+=D:\fb_projects\Example\libs…
adarshk
  • 338
  • 1
  • 2
  • 10
1
vote
2 answers

Flex compiler, mxmlc, called in Java makes 64bits JVM crash (dcpr.dll)

I have a web application that converts SVG files into swf ones. In order to do so, there are 3 steps : 1 - Running through SVG Files in a folder for (final File file : tFiles) { final String fileName = file.getName(); final int nbEr =…
Wilhelm Peraud
  • 249
  • 4
  • 14
1
vote
2 answers

flash crash when loading external swf (with code example this time around)

This is a AS3 project created in FlashDevelop. It targets flash player 10. I have a disturbing problem when running this code: package { import flash.display.Loader; import flash.display.MovieClip; import flash.display.Sprite; …
Tobias
  • 93
  • 10