I am trying to get InDesign to list all the colours in a document without listing the default
"None", "Paper", "Black", "Registration"
This is what I have but AS keeps listing "None", "Paper", "Black", "Registration" in the output.
tell application "Adobe InDesign CC 2014"
activate
delete unused swatches of document 1
set notusedSwatches to {"None", "Paper", "Black", "Registration"}
set upDatedList to get (name of swatches of document 1 whose name is not in notusedSwatches)
end tell