Copy link to clipboard
Copied
Is it possible to enable and disable Track changes using a script?
<Title renamed by moderator>
Yes, it can be done to all stories in the doc or a single story. To enable for all stories in doc:
app.activeDocument.stories.everyItem().trackChanges = true; //or false to turn off
Preferences can be set via script via app.trackChangesPreferences, the API for which is here.
Copy link to clipboard
Copied
Yes, it can be done to all stories in the doc or a single story. To enable for all stories in doc:
app.activeDocument.stories.everyItem().trackChanges = true; //or false to turn off
Preferences can be set via script via app.trackChangesPreferences, the API for which is here.
Copy link to clipboard
Copied
Thank you for your help, that's worked
Alex