InDesign Scripting use .reinitLink() Change missing link status to modified
I’m trying to relink files in a document without updating them so I can review them 1 by 1.
I have successfully used .reinitLink() on a mac, but It won’t update the link status until I reopen the document. I have been able to test sucessfully with .relink, but I don’t want it to update automatically.
Example
var pathVar = "/FullPathToAsset/"
app.activeDocument.links[0].reinitLink("file:"+pathVar)I tried using links[0].update() after reinitLink
But nothing happens. Is there a way to check links after these updates are made?
