Copy link to clipboard
Copied
I have a 162 page PDF that I created in Powerpoint and then exported to PDF. Each page has about 10 links (links created in Powerpoint) to other pages within the document. In the PDF, the links all invert highlight when clicked. Is there a way to update all the links at once so they don't highlight at all? Doing it one by one will take forever. Thanks so much!
Copy link to clipboard
Copied
Run this script from the JS Console:
for (var p=0; p<this.numPages; p++) {
var box = this.getPageBox("Crop", p);
var links = this.getLinks(p, box);
if (links==null || links.length==0) continue;
for (var i in links) {
links[i].highlightMode = "None";
}
}
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more