Actionscript 3 :: CI-friendly Automated Builds For As3/flex Projects

Jan 27, 2012

We're currently developing a flex web app and our build situation is far from ideal. At present we're (as in individual developers) just building using FlashBuilder and deploying manually. The programmers are currently screaming bloody murder for two reasons, though:The lack of CI is like going back to the stone ageWe don't much care for FlashBuilder(Note: We're only using FlashBuilder because it was the easiest way to set up a flex project in conjunction with Away3d and get it building / rendering correctly -- it's a stopgap solution).As a predominately .NET development shop, we're used to doing continuous integration as well as continuous deployment. Ideally, we'd like to get something comparable to this for our flash projects without tying ourselves to a particular IDE.

Requirements:

The build process must be:

.. runnable via the commandline
.. runnable on both developer and CI build machines (and certainly not requiring an IDE!)
.. preferably as IDE-independent as possible (pragmatism will kick in though; if this causes a lot of friction we'll just pick one).
.. able to run on Windows (we develop using Windows)

We don't mind a touch of duplication or a few manual steps (e.g. tarting up the build scripts if we add a new project via an IDE, or generating one configuration from another if tools exist), but the less duplication / maintenance required the better.

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Convert Flash Projects Using Flex Projects?

Sep 6, 2010

I am going to build chart application with Flash Professional CS5 using AS3.0.Is there any possibility to convert this Flash application into Flex by creating movieclips and symbols in runtime in flex.How to do it.

View 1 Replies

Actionscript 3 :: Flex SDK 3.5 Builds Bigger Swfs?

Mar 5, 2010

I have an application which is almost entirely in actionscript. When I build it using Flex SDK 3.5 its size is roughly 378 KB, While Flex SDK 3.0 outputs a swf with roughly 355 KB. What could the reason be?

View 1 Replies

Adobe Flex 2 Projects With Same Class Share That Class Between The Two Projects?

Dec 24, 2009

i have several flash projects and i have common classes. is there a way to share these classes between the project so i won't need to copy it to all the project when ever i modify something?

View 2 Replies

Flex :: Automated Testing Without Static AutomationIDs

Aug 5, 2009

testing a Flex app without static Automation IDs attached to components? All of the elements in the apps are generated .....

We've investigated FlexMonkey but it appears to be incompatible with any app that utilizes the ExternalInterface. RIATest's scripting language leaves much to be desired...

View 4 Replies

Actionscript 3 :: Flex - Automated Test Frameworks?

Mar 6, 2012

I've just been tasked with finding automated actionscript frameworks. Can anyone offer the best out there? I'm just beginning to write the code for my project. Is it better for me to keep my MXML and AS in separate files so I can more easily integrate with any frameworks....or does it even matter?

View 2 Replies

Flex :: Auto-mation - Design A Fully Functionnal Automated App?

Jun 25, 2010

We are currently thinking on getting our apps automaticaly built and tested through a CI server.My major concern is regarding UI tests.. I've been playing with FlexMonkium/Selenium IDE in Firefox but it doesn't really play nice with my app. I'm also testing RIATest 3 but I would have liked the Firefox approach better because it's easy to use for non technical users..A bigger concern is that my app is really complex, using custom events, custom components, ExternalInterface calls.. in order to make it all work smoothly, should I give an automationName to every single component ? How can I handle custom events ? RPC responses time

View 1 Replies

Licensing :: License The Data Visualization Components (charting) For The Flex SDK On An Automated Builder Server?

Oct 23, 2009

I have a professional license of Flex 3.3. This allows me to create applications using the data visualization components (charts) without watermarks. However, all of release builds (test, production, etc) occur on our build server.

The build server only has the Flex SDK installed (not full Flex Builder). As a result the SWFs compiled with this SDK contain watermarks on all the charts. How can I apply a Flex Builder Professional license to the build server to remove the watermakrs w/o installing Flex Builder?My build environment is Flex SDK 3.3 + CruiseControl.NET + NAnt.

View 3 Replies

IPhone Slow Ad Hoc Builds

Oct 19, 2010

Does anyone else experience publishing ad hoc builds for the iPhone (from flash cs5) taking a long time (10 minutes +) ? Whereas it would only take a couple for a (non ad hoc) test build. I suspect it might be stuck in a loop somewhere.Or is it simply a matter of waiting patiently whilst the provision is being approved (or whever it's waiting on)

View 1 Replies

Flex :: Will 4 Work With 3 Projects

May 29, 2010

I can find a version of flex 3 since the release of flex 4. Will flex 4 work with my old project files?

View 1 Replies

Actionscript 3 :: Configure FlashDevelop For Unit Test Builds?

Aug 16, 2011

I'm using AsUnit for unit-testing my current AS3 project. My Main() is basically:

if ( UnitTest )
runUnitTests();
else
runMainProgram();

where I change UnitTest before building depending on whether I want to run the program or run the unit tests. Is there a way that makes it easier to switch between the two modes?

Optimally, I'd use F5 for building with UnitTest=false and another hotkey for building with UnitTest=false. What is the closest I can get with FlashDevelop?

View 2 Replies

Flex :: Compiling Projects With Remote Ant?

Jul 23, 2009

I'm having problems compiling applications with remote ant, something similar to this. However the flex compiler seems to have problems with this. When I run the same script on my local compiles everything without any problems but when I try the remote ant it fails without giving more information.

View 1 Replies

Actionscript 3 :: MXML Projects Using The Flex SDK?

Apr 13, 2010

I found this question, and it mentions the FlashDevelop wiki. However, I couldn't find anything there at all.

Where is a good place to start? I have done some work with MXML projects using the Flex SDK, but never any ActionScript programming.

View 2 Replies

Flex Builder New Projects With Syntax Errors?

Feb 19, 2010

I'm a junior developer and I'm having some problems with my flex builder 3. Every time I make a new project, flex builder detects syntax errors like:

1084: Syntax error: expecting rightbracket before leftbrace. FotoBeheer line 23
1084: Syntax error: expecting rightbracket before public. FotoBeheer line 22
1084: Syntax error: expecting rightparen before s. DomoticaSystem line 16
1093: Syntax error. DomoticaSystem line 16

Nevertheless, Fotobeheer will run, but any other program just won't even start. Does anybody have any ideas how to solve this problem?

View 1 Replies

Flex :: Set Up Projects That Reference Common Controls?

Mar 30, 2010

I'm not a flash developer, I'm having issues figuring out how I should set up these two projects that I have in Flex Builder.I've already created projA which has a .mxml that references several custom controls & skins from com.xxx.controls within projA.I now have to build projB which also has a .mxml that will create a different .swf. I want to use some of the same controls from projA.I currently build projA through the command line and nant and will need to do the same for projB.

Should I create a new project to move all of the common controls into? How do I then use this library project in both the projects & compile via command?

View 1 Replies

Flex :: Who Uses IntelliJ For Real Commercial Projects

Jul 6, 2010

Just a simple question: Would you prefer IntelliJ? If so, what are the Pro- and Cons?

View 2 Replies

Flex :: Generate Dependency Graph Of All Projects

Apr 14, 2011

Is there a known app (demo or otherwise) to generate a dependency graph of all projects linked to a given project. Typically these dependencies are seen in the Eclipse-->Flex Project-->Properties-->Flex Build Path. Graph is expected to funnel thru' all the way into these dependencies until the leaf has none.

View 1 Replies

Use Latest Maven To Build Flex Projects?

Nov 22, 2011

Currently, I'm trying to use latest maven to build flex projects in IntelliJ-Idea. But have no success.What is the best way to do it?

View 1 Replies

Android :: Load Jpg File For Flex Air Mobile Projects?

Apr 8, 2012

In a typical as3 or flex project, after loading xml file, i load jpg files (thumbnails etc) manually, so i can use them in sprites / movie clips etc..currently i am working on air mobile project. and i am attempting to load some thumnails(pg) file to list view (spark) and using custom item renderer.itemrenderer has an spark image componnt in it. and its data property is set to Image object.i can check that image files do exists in file application directory.do i need to load all those thumbnails in memory. then use them?

View 1 Replies

Flex :: View States Used In Real-World Projects?

Sep 3, 2009

I've just found out about View States in Flex (v3.0), but I am not really sure how widely this is used in real-world applications. Is it a good practice to use it? Are there any pitfalls such as maintainability for instance?

View 3 Replies

Flex :: Remote Source Control For Personal Projects

Dec 4, 2009

source control on personal Flex projects, and what eclipse plug-ins are available for these source control services? I'd like to add some personal projects to source control when they are ready.

View 1 Replies

Actionscript 3 :: Building Flex Builder Projects From Commandline?

Sep 17, 2010

I have several Flex Builder projects which depend on each other (both libraries and "applications",projects which generate an SWF), and want to compile them from commandline. I know there is the fb.exportReleaseBuild ant-Task, but unfortunately it doesn't work on Linux and only comes with Flex Builder.

Is there any other way to build those projects, including their dependencies, from commandline?

View 3 Replies

Open Source Flex (Flash) Visualization Projects

Feb 11, 2011

I'm currently researching Flex visualization components for demoing purposes and am wondering if anyone in the community has had success building on top of any current open source projects. I'm currently looking at axiis but am wondering if anyone has found anything similar that worked well for building custom visualization components? I've found some stuff hosted on Google code but haven't found anything very mature yet.

View 1 Replies

ActionScript 3.0 :: Difference Between Using Flex Or Flash CS3 To Develop Projects?

Feb 11, 2008

what's the difference between using Flex or Flash CS3 to develop AS3 projects?

View 8 Replies

Flex :: Use TextMate With Existing Projects Created In Flash Builder?

Jul 23, 2010

I am wondring if anyone has a good resource for opening existing Flex projects that where created in Flex / Flash Builder and run them using the TextMate bundle for Flex and Actionscript projects.

Basically I just want to know if I can walk into an existing project and configure this easily or am I pretty much stuck with using Eclipse ?

View 1 Replies

Flex :: Structure Multiple Cairngorm MVC Projects That Share Several Components?

Jun 5, 2009

I recently completed a project for a custom report UI in Flex. Now, I've been tasked with creating a new application that is essentially a "lite" version of the original UI. It will include only a few of the options that are in the original application. Also, it needs to be a separate application.

I do not want to duplicate my code, so I am planning on moving a bunch of the classes from the original application to a new library that can be shared by both applications. However, I'm trying to figure out how to make this work in my MVC environment.

For example, I have an Accordion component that lets users filter several items. Each Accordion child is an instance of a custom component with two lists (one for entities available for selection, the other for the entities the user has selected). Each child component has properties bound to the Model and functions that call Cairngorm Events.[code]...

View 1 Replies

Flex :: List Of Active Open Source Projects Built By Adobe AIR?

Feb 17, 2011

Could someone share list of active and popular open source Rich Internet Applications or desktop application (not library or framework) that are built by Adobe AIR/Flex? The popularity and quality I am looking for are something like Azureus/Vuze (Java), XBMC etc. [url]...

View 3 Replies

Javascript :: Flex Graphic Editor / Samples Open Source Projects

Feb 2, 2012

I need to create an application, the main срфддутпу will be to work with graphics. The application will contain the basic operations with geometric shapes and creating your own shapes.When creating, I would like to rely on ready-made examples of graphic editors. To do this, I'm looking for examples of open source projects.

View 1 Replies

Flex :: Adobe Flash IOS Packager Throws Java.lang.OutOfMemoryError When Packaging Large Projects?

Jul 20, 2011

I've been porting a Flex 4 codebase to iOS using the adobe packager, but have run into a snag when trying to package our whole codebase. The packager runs for a while and then throws an OutOfMemoryError - even if I increase the java heap size to 4GB. No single piece of code seems to be causing the problem, as it compiles successfully if I cut out large chunks of code, and I can change which chunks I'm omitting. It might be related to the size of the code itself.I've logged a very detailed bug report with adobe here: ou can package to reproduce the issue, a ruby script that generates actionscript codeto generate that AIRI file, and a summary of all of the things I tried before logging the bug.

View 2 Replies

Developing SEO Friendly Flash Site

Jan 7, 2010

Is there some ways to develop a SEO friendly flash site? I read in an article that flash sites are not SEO friendly one.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved