• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Applescript to update images links in InDesign

New Here ,
Jun 22, 2018 Jun 22, 2018

Copy link to clipboard

Copied

Hello,

I am looking for a simple Applescript that I can use to update image links.  The links are not missing, they just need to be updated. I am using an application that allows me to run Applescripts within the app. 

Thanks,

Morgan

TOPICS
Scripting

Views

847

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Jun 22, 2018 Jun 22, 2018

Copy link to clipboard

Copied

LATEST

Try this.

tell application id "com.adobe.InDesign"

          set currentDoc to active document

          set Outofdategraphics to every link of currentDoc whose status is link out of date

          repeat with j in Outofdategraphics

                      update j

          end repeat

end tell

gr

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines