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.
Archive for January, 2004
Speaking at MDCFUG Today on CF/Office integration
Tuesday, January 13th, 2004JSFL to export all components as SWCs
Tuesday, January 6th, 2004I 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
Monday, January 5th, 2004We’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…
(more…)