You must be logged in to post Login

Search Forums:


 






Automatically embed all links in indesign?

UserPost

7:36 am
May 31, 2011


CreeDo

Member

posts 43

Is there a script to do this? I'd love to have some setting that just automatically embeds everything… whether it's placed, copy/pasted, drag-n-dropped, whatever. I understand the risks as far as creating huge filesizes.

Ideally this would happen with zero interaction from me, the idea is I skip the process of opening the links panel and manually doing it… it just happens quietly in the background with every graphic I use.

2:27 am
June 3, 2011


Kasyan Servetsky

Kiev, Ukraine

Member

posts 65

var doc = app.activeDocument;
var links = doc.links;

for (var i = links.length-1; i >= 0; i–) {
links[i].unlink();
}

7:25 am
June 3, 2011


CreeDo

Member

posts 43

very nice, I'm looking forward to trying this. Thank you!