Skip to content

Instantly share code, notes, and snippets.

@trych
Created December 21, 2015 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trych/69f1a1328e0afe47d081 to your computer and use it in GitHub Desktop.
Save trych/69f1a1328e0afe47d081 to your computer and use it in GitHub Desktop.
InDesign Remove Recent Items
#target InDesign
var userOR = app.generalPreferences.openRecentLength;
app.generalPreferences.openRecentLength = 0;
app.generalPreferences.openRecentLength = userOR;
@trych
Copy link
Author

trych commented Dec 21, 2015

InDesign script to remove all items from the "Open Recent" list.
If you use this frequently, you can assign a custom shortcut to it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment