Saturday, April 23, 2005

Wrote my first little JSFL today to automate setting the linkage name in the library for the symbols I created:


var itemArray = fl.getDocumentDOM().library.items;

for (var i = 0; i < itemArray.length; i++)
{
itemArray[i].linkageExportForAS = true;
itemArray[i].linkageIdentifier = itemArray[i].name;
}

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home