I’m doing a little pre-flighting and want to test documents to see if there is any art with missing links.
So I tried:
set isMissingArt to ((count of (links of myDoc whose status is link missing)) is greater than 0) – I know there is no linked text, art only.
That worked great. But then I found out they only wanted to check art that was located on the document’s first spread. So, being lazy, I tried this…
set isMissingArt to ((count of (links of spread 1 of myDoc whose status is link missing)) is greater than 0) – I know there is no linked text, art only.
… which doesn’t work. So then I opened up the dictionary and found that… spreads don’t have links, documents do.
Can this be written? In CS, I could just use the links needed property, but I’m using 2.0.2
Thank you.