I’m speaking at the Maryland ColdFusion User’s Group today on Integrating ColdFusion with Microsoft Office. If you’re in the Rockville area, stop by.
Monthly Archives: January 2004
JSFL to export all components as SWCs
I needed to export a bunch of components from a source FLA several times for testing. Doing this manually got tedious very quickly, so, I created a small JSFL script to loop through the library and export all components.
var rootDir = "file:///C|/Documents and Settings/Sam/" +
"Local Settings/Application Data/Macromedia/" +
"Flash MX 2004/en/Configuration/Components/" +
"B-Line Charting Components 3.0/";
var items = fl.getDocumentDOM().library.items;
var item;
var j=0;
for (var i=0; i
Just change the root dir and put in your command folder.
Sneak Peak: BLDocs documents AS2 code
We’re working on a documentation generator for ActionScript 2 that parses code commented with the JavaDoc style syntax to create HTML help, Flash help, or any other type of documentation. Here’s a sneak peak at the output and feature list…
Continue reading