[Update: Just fixed the downloads -- they should work now from this site.]
The Flash Ant And Flash Ant Lite – Latest Versions article by Aral Balkan, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 2.0 UK: England License.
The latest version of Flash Ant is version 1.1. For more information on Flash Ant, please see the introductory post.
Downloads:
- Flash Ant 1.1 (contains sources; .zip, 224kb)
- Flash Ant Lite 1.1 (build optimization/no source; .zip, 216kb).
The Flash Ant And Flash Ant Lite – Latest Versions article by Aral Balkan, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 2.0 UK: England License.
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
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!
Sorry about that — I’ve updated the links and they should work now.
I am beginner, would someone bring me up, much appreciate, have experience at flash and java;but not much skillful at it, much appreciate
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 )