4 Dec 2003

[Update: Just fixed the downloads -- they should work now from this site.]

The latest version of Flash Ant is version 1.1. For more information on Flash Ant, please see the introductory post.

Downloads:

Add Your Comment

Spam Protection by WP-SpamFree

Flash Ant And Flash Ant Lite – Latest Versions

  1. [...] ome may be GPL, while others LGPL and/or MIT/BSD. Flash Ant and Flash Ant Lite [...]

    Flash Ant :: Downloads
  2. If anybody interested in using the flash ant task for the german IDE or any other language:

    I’m not a java programmer but I have added a quick hack to Flash2004.java so error messages by the IDE are detected correctly. The flash task now accepts an attribute “errortag”

    drop me a line if anybody is interested in …

    Stephan

    Stephan
  3. I would like to download this, but the link to Bits and Pixels no longer exists. Is there a download anywhere on this site. Much appreciation, thanks!

    solomon71
  4. Sorry about that — I’ve updated the links and they should work now.

    Aral Balkan
  5. I am beginner, would someone bring me up, much appreciate, have experience at flash and java;but not much skillful at it, much appreciate

    draco
  6. for big fla files it sometimes tries to copy swf before flash releases lock on it

    quick hack is to replace

    if ( theLastSWF.exists())

    with

    boolean canCopy = true;

    try {
    FileInputStream stream = new FileInputStream(theLastSWF);
    stream.close();
    } catch (FileNotFoundException e) {
    canCopy = false;
    }

    // has the last SWF been published?
    if ( canCopy )

    ambienthack