Copy link to clipboard
Copied
Hello.
Just a quick question, if someone can test this for mpe, please.
Does story.overflows returns true if there is overset text in a table inside the story, or only if the story itself overflows?
Only if the story itself overflows.
app.activeDocument.stories[0].tables.everyItem().cells.everyItem().overflows
Copy link to clipboard
Copied
Only if the story itself overflows.
app.activeDocument.stories[0].tables.everyItem().cells.everyItem().overflows
Copy link to clipboard
Copied
Thank you!
Copy link to clipboard
Copied
@Vamitul – "story.overflows" does not control cells, columns or rows of a table, that overflows.
You have to check individually for tables.
Unfortunately the Table object has no "overflows" property.
That means you have to check for individual cells, columns or rows.
Uwe
Copy link to clipboard
Copied
in my case, this is perfect. i don;t care about no stinky tables, i just want to make sure my story doesnt overflows.