Answered
Script for delete links from Adobe Illustrator
Hi there,
Maybe somebody have a script that delete all links from adobe Illustrator file such Eps? Please share.
Thank you!
Hi there,
Maybe somebody have a script that delete all links from adobe Illustrator file such Eps? Please share.
Thank you!
Hi @Serhii23598830uzq3, here is a simple approach:
var doc = app.activeDocument,
placedItems = doc.placedItems;
for (var i = placedItems.length - 1; i >= 0; i--)
placedItems[i].remove();
- Mark
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.