script
script
- Subject: script
- From: email@hidden
- Date: Fri, 7 Dec 2001 10:59:00 -0600
I am trying to get my script to check my 16 page signatures for text
overflow and then mark my boxes where the text flows over. Below is what I
have so far. However, the script doesn't want to process after 4 pages.
Thanks-
Darren
tell application "QuarkXPress(tm) 4.11" set countoflow to 0 tell front document repeat with i from 1 to count of text boxes tell text box i if box overflows then set countoflow to countoflow + 1 end if end tell end repeat end tell beep display dialog (countoflow as text) & " text boxes overflow"end tell