Answered
Remove hyperlinks from an InDesign document
Hi!
Is there a script command that I can use to change hyperlinks of a document to just regular text?
Thanks!
Hi!
Is there a script command that I can use to change hyperlinks of a document to just regular text?
Thanks!
var gDoc = app.activeDocument;
RemoveHyperLinks();
function RemoveHyperLinks() {
if (gDoc.hyperlinks.length > 0){
for (var i = gDoc.hyperlinks.length-1; i >= 0; i--) {
gDoc.hyperlinks.remove();
}
}
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.