great JSFL reference
http://dynamicflash.com/jsfl/
I’ve used it yesterday to set Export for AS and not Export in first frame for some using item.name, but exaple is for all movieclip in library
it’s fairly simple to code in JSFL when you have good reference like this
code is
var libItems = fl.getDocumentDOM().library.items;
fl.outputPanel.clear();
for (i = 0; i < libItems.length; i++){
var item = libItems*;
if(item.itemType == "movie clip"){
fl.trace(item.name+" will be export to 1st Frame. " + item.itemType);
item.linkageExportForAS = true;
item.linkageIdentifier = item.name;
item.linkageExportInFirstFrame = false;
}
}
if you have problem how you can use this I can post few sentences