0
votes
1answer
29 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.
…
0
votes
1answer
90 views
Difference in building swf through FlexBuilder and mxmlc(ANT build)
Hi,
Will there be any difference between the swf generated by Flex Builder and mxmlc?
In my application, there is a page with certain fields to be filled in. Upon clicking a butt …
0
votes
1answer
19 views
mx:MediaPlayback Flex tag
I'm trying to compile gui/flex/songs.mxml in the fourth edition of Bruce Eckel's Thinking in Java book and am getting a compilation error with Flex 3.4.
Here is a simplified versi …
0
votes
0answers
82 views
Compiling MXML files into multiple SWF files using mxmlc compiler
Hi,
I have a few mxml files that I want compiled into their respective SWF files using a configuration file. At the moment I can get 1 mxml file compiled into it's respective SWF …
0
votes
2answers
50 views
Does Flex SDK’s mxmlc create a cache file or hash to determine if source code has changed?
My ant buildfiles tell mxmlc.jar to recompile target mxml source. However, if the target mxml source file has not changed, either ant or mxmlc is ignoring the file and will not cr …
0
votes
1answer
194 views
How to derive a relative path using Ant
I'm using Ant and mxmlc to compile ActionScript classes and MXML into swfs, while maintaining the default organization of a Flex Builder (Flash Builder) project. Many of my Action …
1
vote
2answers
65 views
Sharing code between swfs
Hi,
Lets say I have two swfs A and B, and at runtime, swf A loads swf B, and I wish to share code between them, to minimize file size and download times.
If swf B has some code ( …
1
vote
1answer
595 views
How to get Flex Builder 3 to generate two builds: one “-use-network=true”, another “-use-network=false”?
I'm building a Flex application that will need run under two different deployment scenarios:
First, the application will be hosted on the web. The SWF loads some external resourc …
0
votes
2answers
395 views
Compile an ActionScript class that is in a package to a swf using Flex Builder 3
How do I configure an ActionScript Project in Flex Builder 3 Pro so that I can compile an ActionScript class that is part of a package into a swf. For example, the class that I wa …
1
vote
1answer
110 views
Access stage from the “main” class
I have the following ActionScript:
package {
import flash.display.Sprite;
public class Application extends Sprite {
public function Application(){
width=1000;
height=50 …
0
votes
1answer
64 views
Runtime error when compiling flex application with ANT
Hi,
I'm using a licensed version of Flex Builder Pro to develop an application.
I compiled the swc and generated swf successfully using ANT tasks.
It contains an Advanced Data Gr …
2
votes
3answers
316 views
How do I make my Ant Generated swf as small as possible?
I have a flex project and if I build a release version of the application using flash builder with RSLs on my swf is 115k. If however I build the same application using ant the swf …
3
votes
4answers
675 views
compiling actionscript from command line using MXMLC
I have a tiny actionscript "project" consisting of two files, call them foo.as and bar.as. For reasons I won't go into, I really really want to build the .SWF from the command line …
0
votes
1answer
58 views
How do I tell mxmlc to treat warnings as errors?
I'm using the mxmlc command line tool to compile a pure AS3 project. Is there a command line option to make mxmlc treat warnings as errors? I've read through all the compiler flags …
2
votes
2answers
364 views
Can relative paths be used when using “include-libraries” in the Flex mxmlc compiler?
I am trying to force all of the classes in a .swc to be linked into my Flex project's resulting SWF file. From the docs:
http://livedocs.adobe.com/flex/3/html/help.html?content=c …
