Find overflow Text
Hi every one
is there a script that help to find the text boxes with overflow text (like in indesign with overset text)
Hi every one
is there a script that help to find the text boxes with overflow text (like in indesign with overset text)
Dear Rick
here is a sample
https://www.yousendit.com/download/TEhXT204NDI1R1BWUThUQw
sorry for being soo late
OK, now that I see your document, I see the problem. My script was set to skip unnamed flows, and your callouts are in unnamed flows, which is fine. Here is the modified script:
var doc = app.ActiveDoc;
var flow = doc.FirstFlowInDoc;
while (flow.ObjectValid()) {
var textFrame, subCol;
// Get the last TextFrame and its last Sub Column.
textFrame = flow.LastTextFrameInFlow;
subCol = textFrame.LastSubCol;
if (subCol.Overflowed === 1) {
alert ("TextFrame is overflowed.");
}
flow = flow.NextFlowInDoc;
}
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.