Search found 2 matches

by scubapauluk
Fri Jul 18, 2014 4:50 pm
Forum: Scripting
Topic: InDesign Script for PDF Metadata
Replies: 2
Views: 1594

InDesign Script for PDF Metadata

Many thanks I tried this initially keeping with event listeners but in the end just ended with var myDoc = $doc; var ExistingKeywords = $doc.metadataPreferences.keywords; if (myDoc.links.length > 0) { var myList = [myDoc.links.everyItem().name.join(; )]; } else { var myList = "This document con...
by scubapauluk
Fri Jul 18, 2014 1:47 pm
Forum: Scripting
Topic: InDesign Script for PDF Metadata
Replies: 2
Views: 1594

InDesign Script for PDF Metadata

I currently have a (startup) script for my users that upon saving or beforeSave as event listener all links are added to the Copyright Notice field in Indesign. Upon each save this list is refreshed with the latest links. I have another listener beforeExport that then takes this same information and...