Code: Select all
tell application "EndNote"
set myFile to first document
set selectedRecords to retrieve "selected" records in myFile
repeat with theRecord in selectedRecords
set keyWords to field "Keywords" of record theRecord
-- Stuff
set field "Keywords" of record theRecord to combinedTerms as text -- <<< Line I can't figure out how to do
end repeat
end tell
1. Is there any thought of this level of AppleScriptabilty being added to Bookends?
2. Can anyone point me to an alternative way to modify the content of a field programmatically?
Thanks.