Hi All,
FYI., new to Illustrator & Illustrator scripting.
Request:
Need alert, if the illustrator document having missing fonts.
In Indesign, we should use the below code:
Missing_Font(); function Missing_Font() { var myUsedFonts = app.activeDocument.fonts; for (var i = 0; i < myUsedFonts.length; i++) { if (myUsedFonts[i].status != "1718831470") { alert("Please Fix Missing Font") exit(0); } } }
Thanks in advance
Siraj