Re: Quark Box overflows on not shown page
Re: Quark Box overflows on not shown page
- Subject: Re: Quark Box overflows on not shown page
- From: Olivier Berquin <email@hidden>
- Date: Fri, 25 Oct 2002 10:27:27 +0200
Hi Brian,
The tip: "show page"
Try something like this (this script search every box overflows in a
document):
--
tell application "QuarkXPress Passport 4.11"
activate
set measurements showing to false
tell document 1
set tool mode to drag mode
set view scale to fit page in window
repeat with p from 1 to count of pages
show page p -- this is the tip !!!
tell page p
try
repeat with i from 1 to count of text boxes
tell text box i
if box overflows is true then
-- do your stuff
exit repeat
end if
end tell
end repeat
end try
end tell
end repeat
end tell
end tell
--
HTH
Olivier.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.