Finding fonts status, and Link (Placed item) status in Illustrator document
Hi
I am trying to get the below details as report from Illustrator, but these are all working in InDesign application, but I am unable to get the below details in illustrator. Can you please check and help me out from this?
1. List of fonts and fonts status (missing, installed, etc.) in particular document. Below coding is for InDesign.
var myDoc = app.activeDocument;
var fontList = myDoc.fonts;
for(var i=0; i<fontList.length;i++) {
alert(fontList[i].name+" Status is "+fontList[i].status);
}
2. Images (PlaceItems [ai,psd,tif,jpg,PDF]) status (linked, missing, etc), and its scaling details (X and Y).