Answered
Script to insert a paragraph after every table
I want to add a paragraph after every table in my document, i was able to insert it before tables with this script but couldn't figure out how to insert it after tables, any help?
var tables = app.activeDocument.stories.everyItem().tables.everyItem().storyOffset
for (var i = 0; i < tables.length; i++) {
tables[i].contents = "\r";
}
