Using FlashDevelop
Sunday, August 20th, 2006 | Author: dehash
In addition to the instructions here I have added an entry to ToolBar.xml so that I can display the swf in the standalone Flash player. It calls ant on the build.xml file with the target "launchstandalone" :
XML:
-
<button label="StandAlone" click="PluginCommand" image="54" tag="Run;SaveAll;ant launchstandalone" shortcut="F11" />
Also added xtrace.as to \ProjectTemplates\05 AS3 Project\src\ and it can be used without import in all projects
Also xtrace can take an array as an argument for example:
Actionscript:
-
xtrace([var1, var2]);
-
// which outputs the same as
-
xtrace(var1 + ", " + var2);



That’s what I love about Flash Develop and Ant, you can really customize things to suit your exact workflow.
Exactly. I just posted an ant build file
http://www.dehash.com/?p=25
based on your templates that customises things a little more.
Good way to learn Ant too.