indesign-scripting-python icon indicating copy to clipboard operation
indesign-scripting-python copied to clipboard

Any way to avoid missing references when opening InDesign Document

Open alexberd opened this issue 3 years ago • 1 comments

Is there any way to avoid the missing references error message when opening a InDesign Document? https://github.com/lohriialo/indesign-scripting-python/blob/master/OpenDocument.py image

alexberd avatar Jan 29 '21 12:01 alexberd

With javascript, is: app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT; see: http://jongware.mit.edu/idcs6js/pc_ScriptPreference.html So it maybe: app.ScriptPreferences.UserInteractionLevel = 1699640946 # UserInteractionLevels.NEVER_INTERACT

mlove4u avatar Feb 24 '21 07:02 mlove4u