sebastianw88921027
New Here
sebastianw88921027
New Here
Activity
‎Nov 05, 2015
02:58 AM
Hello, I try to script my InDesign Server CS6 to do not update image links (from images which edited since last opening of layout document). The default setting is that the image links will automatically be updated when opening the document. I found a parameter in the scripting documentation and tried this in a InDesign jsx script. The parameter is also available for InDesignServer. In the InDesign script it works to set app.linkingPreferences.checkLinksAtOpen = false; When I try to use this parameter in my InDesignServer script the server do not ust this setting an updates all images in the document. Has anyone an idea to solve this?
... View more
‎Apr 17, 2015
04:19 AM
3 Upvotes
Hi, the fix for me was (testet on InDesign CS6 8.0.2) to replace the followin line in the ExportPreflightReport.jsx script. //for(n = 0; n < arguments.length; n++) params[arguments [0]] = arguments [1]; for(n = 0; n < this.arguments.length; n++) params[this.arguments [0]] = this.arguments [1]; And if you want to use the script on a IndesignServer you need to replace also to following line: it is near line 290 in the "CreateWorkingDoc" function //var doc = app.open(templateFile, false); // No window (don't want user seeing the doc building) var doc = app.open(templateFile); // in IDS you need only one Paramater
... View more