Answered
Hi, in some of my pdf documents internal hyperlinks are surrounded by a red box. I would like to turn this feature off but I can't find the option to do so. Can someone help me with this?
Thanks.
Hi, in some of my pdf documents internal hyperlinks are surrounded by a red box. I would like to turn this feature off but I can't find the option to do so. Can someone help me with this?
Thanks.
var p, b, aLinks, l; // Loop through each pagefor (p = 0; p < numPages; p += 1) { // Get the current page's crop boxb = getPageBox("Crop", p); // Get all the links on the current pageaLinks = getLinks(p, b); // If there are any links on the current page...if (aLinks) { // Loop through all of the links on the current pagefor (l = 0; l < aLinks.length; l += 1) { // Set the link border to nothingaLinks[l].borderWidth = 0;}}} app.alert("All Done!", 3);
George Kaiser