Skip to main content
Participating Frequently
August 19, 2024
Answered

How to Track the Total Number of Changes Made in an InDesign Galley

  • August 19, 2024
  • 1 reply
  • 776 views

Hi, is there any way to get (or anyplace that shows) the total number of changes/corrections made in an InDesign galley? (with Track Changes on, of course)

 

<Title renamed by MOD>

This topic has been closed for replies.
Correct answer Robert at ID-Tasker

Hopefully it will work:

 

 

var total = 0;
for (var a=0;a<app.activeDocument.stories.length;a++)
{
   total += app.activeDocument.stories[a].changes.count();
};
alert(total);

 

 

1 reply

Robert at ID-Tasker
Robert at ID-TaskerCorrect answer
Legend
August 19, 2024

Hopefully it will work:

 

 

var total = 0;
for (var a=0;a<app.activeDocument.stories.length;a++)
{
   total += app.activeDocument.stories[a].changes.count();
};
alert(total);

 

 

TodB724Author
Participating Frequently
August 20, 2024

Thanks! I'm afraid I'm not too (at all?) knowledgable about coding and such; where would I enter this in InDesign?

Robert at ID-Tasker
Legend
August 20, 2024