In an Animate project, I can see the use count of each item in the library. I open the library with Ctrl + L and I can see that some items are used 1 time, 19 times, or 0 times.
I want to use CS5 JavaScript to get the use count for each item.
There seems to be no way to just do this:
let count = fl.getDocumentDom().library.items[1].getData('useCount');
Or
let count = fl.getDocumentDom().library.items[1].useCount
I have attempted to make the item the selection of the document and then get how many items are selected, as in the code below, but an error shows up saying that the first argument in line 6 is invalid.
var doc = fl.getDocumentDOM();
var library = doc.library;
var item = library.items[1];
library.selectItem(item.name);
doc.selectNone();
doc.selection = [item]; // Error: selection: Argument number 1 is invalid.
fl.trace(doc.selection.length);
I have searched around on the internet and haven't yet found an answer to this exact question.
How do I do this?