Answered
table textframe not fit to frame
Hi Everyone,
After updating the content in my table the table content overflows and it need not fit with frame.
See the below code :
var table = app.activeDocument.stories.everyItem().tables.everyItem().cells.everyItem().getElements()
for(c=0; c<table.length; c++){
if(table[c].contents.match(/LINKED IMAGES:/)){//Update the Linked Images
table[c+3].contents = "Link Names: \r" + Links;
}
table.parentTextFrames.fit(FitOptions.FRAME_TO_CONTENT)
}