Tagged Questions
The compc tag has no wiki summary.
4
votes
2answers
1k views
Using compiler constants with <compc /> ant task
I'm converting an existing build script from <mxmlc /> to <compc /> to generate a swc.
However, the build is failing, giving the error:
[compc] C:\xxxx\LogViewer.mxml(32): Error: Access ...
2
votes
2answers
58 views
Actionscript 3 - Script Libraries
I'm attempting to load the resulting swf of a swc build manually. Due to my particular environment, we have a need to segregate class definitions into swcs (where it makes sense) to remove redundant ...
2
votes
1answer
836 views
Compc “error: could not find source for resource bundle” in Flex 3 when upgrading from 2.0.1
I have moved our project from SDK 2.0.1 to 3.5 because I'm using TLF. This has compiled OK in flex builder 3 IDE but I am now using command line compilation for our build system and getting errors for ...
2
votes
2answers
2k views
Compile a SWC using COMPC, excluding 3rd party libs
I have a code library that I have built. It relies on 2 other (third party) libraries. At the moment, when I compile the library into a swc, both third party libraries are included. I am looking for a ...
1
vote
1answer
1k views
Conditionally including Flex libraries (SWCs) in mxmlc/compc ant tasks
I have been struggling trying to figure out how to conditionally include Flex libraries in an ant build based on a property that is set on the command line. I have tried a number of approaches with ...
1
vote
1answer
756 views
Compiling a Flex Library with a source attachment using compc or FlashBuilder
I am trying to compile a Library SWC using FlashBuilder while retaining the references to the source code so that asdocs will still appear and the debugger will show source code when there is a ...
0
votes
2answers
19 views
Referring to external source in Flex compiler
Is there a external-source-path option available in Flex compiler similar to external-library-path ?
My requirement is that, I am building a "SWC" file but I don't want to include certain folders ...
0
votes
1answer
106 views
AS3 alternatives to *_exclude.xml files, loading class definitions dynamically
I've been banging my head against a wall for this for almost a couple days now and hoping that someone can point me in the right direction.
Working in a very large Flash application, previously in ...
0
votes
1answer
274 views
How to create an SWC file
All I want is to take my AS3 source code files and compile them into a SWC file.
Upon inspection, the SWC files I generate end up with some kind of timeline or spite in them when I use the Flash IDE ...
0
votes
2answers
414 views
Error “Could not resolve <s:SolidColorStroke>” When Trying to Compile a Flex 4 SWC with Ant
I'm trying to compile a component using ant and keep getting this error message throughout the component . . .
ButtonSkin.mxml(179): Error: Could not resolve <s:SolidColorStroke> to a ...
0
votes
1answer
802 views
Compiling content of directories/wildcard to SWC using Flex compc ant tasks
Here is how I usually write the compile task:
<compc keep-generated-actionscript="true"
include-classes="Class1 Class2 com.package.Class3"
...
0
votes
1answer
845 views
Why doesn't ${locale} resolve in my <compc> Ant task?
I've seen a number of examples, e.g. here, where people are including locale resource bundles by referencing the locale attribute in the element. For some reason this doesn't work for me. Here's ...
0
votes
1answer
239 views
Flex Compilation - Strange Behavior of metadata tags
I'm trying to move the build of a Flex Builder workspace from the IDE into an Ant task, and I'm having some trouble with the behavior of some custom metadata tags in the projects.
I have one library ...
0
votes
2answers
767 views
How to compile a SWC file with mulitple namespaces
I'm trying to compile an SWC file from a list of given ActionScript classes. I'm using the compc compiler. The problem is that there are so many classes grouped into multiple namespaces that I am ...
0
votes
0answers
54 views
Does it matter that there are 0-byte resources in my compiled SWC?
I have a Flex 3 SWC file compiled using the compc Ant task. It looks very similar to the one generated by the Eclipse export release build command, but there are some 0-byte files in the mx packages ...
0
votes
1answer
372 views
Why are some of my assets 0-byte in size when I build a component using compc?
I'm building a flex .swc library using Ant, and many of the assets that are supposed to be in the file are not being copied, instead creating 0-byte entries in the .swc.
Here is the ant compc target ...
0
votes
1answer
696 views
Compc (Actionscript Library Compiler) Doesn't Fail Unless I Delete the File First?
Here's the scenario: I run compc on a source directory to recompile an already existing library after some changes, which completes successfully. Then I remove the library (the .swc file) and ...