Skip to content

Instantly share code, notes, and snippets.

@grefel
Last active September 7, 2016 11:42
Show Gist options
  • Save grefel/fa0ede2523a437f93ae3 to your computer and use it in GitHub Desktop.
Save grefel/fa0ede2523a437f93ae3 to your computer and use it in GitHub Desktop.
Find all Tables in InDesign Document
function getAllTables(dok) {
allTables = [];
app.findTextPreferences = NothingEnum.NOTHING;
app.findTextPreferences.findWhat = "<0016>";
var result = dok.findText();
for (var i =0 ; i < result.length; i++) {
allTables[i] = result[i].tables[0];
}
return allTables;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment