209 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
73
views
Specifically, how would you compile a folder of decompiled actionscript back into a runable .swf
I know there is some information on compiling actionscript out there but i am finding it really hard to understand and I can't seem to get anything to work.
I have recently taken interest in a ...
0
votes
1
answer
117
views
Type was not found 'ServerSocketConnectEvent'
I'm new with actionscript and want to create a socket server and listen to it, here is my code:
package
{
import flash.display.Sprite;
import flash.net.ServerSocket;
import flash.events;
...
0
votes
0
answers
84
views
Flex mxmlc ant task gives java.lang.OutOfMemoryError: Java heap space
I'm getting this error while trying to build flex project
[mxmlc] java.lang.OutOfMemoryError: Java heap space
[mxmlc] at macromedia.asc.parser.NodeFactory.expressionStatement(Unknown Source)
[...
1
vote
1
answer
266
views
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 ...
0
votes
0
answers
95
views
How to parse CCD/CDA document in Apache/Adobe flex?
How to parse CCD/CDA document in adobe flex?
Is there any simple solution/Third party library to parse and show all the human readable part present in XML rather than iterating over each node and ...
0
votes
2
answers
344
views
How can I resolve "Access of undefined property JSON?"
This should be simple, but google has failed me (more likely I didn't ask it nicely).
Using FlexBuilder 3, I just added code to do some JSON stuff. When I compile/debug from FlexBuilder everything ...
0
votes
1
answer
199
views
Hide AS3 deprecation warning on specific line
ActionScript has an attribute that allows marking fields/classes/functions as deprecated:
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf680e1-7ffe.html#...
0
votes
1
answer
98
views
Java Heap Size amxmlc without ant
Out of the blue my build task for compiling my AIR application has stopped working:
/opt/flex-sdk/bin/amxmlc \
-optimize=true \
-define+=CONFIG::DEBUG,false \
-define+=CONFIG::RELEASE,true \
src/Main....
1
vote
1
answer
330
views
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-...
0
votes
1
answer
147
views
ActionScript how to compile .as to binary machine readable format
I am looking for an option for converting my .as ActionScript3 files to binary format before distribution. I tried mxmlc and compc but both are converting source to bytecode which is reversible. Is ...
0
votes
1
answer
273
views
Is it possible to compile a FLA using mxmlc?
Let me give you a little explanation of what I'm trying to do first. I'm working on a new AS3 based architecture and I'm trying to fix some issues I had in the past with AS2. Each screen has its own ...
0
votes
0
answers
116
views
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 ...
0
votes
1
answer
50
views
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 ...
2
votes
0
answers
312
views
MXMLC incremental not working on OSX
I'm working on an Apache Flex project that used to be developed on Windows and is now being developed on OSX. Back when we were on Windows, we fought and fought with MXMLC and its incremental command ...
0
votes
2
answers
644
views
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 ...