XPress: color spec manipulation
XPress: color spec manipulation
- Subject: XPress: color spec manipulation
- From: harry brindley <email@hidden>
- Date: Fri, 16 Feb 2001 15:06:19 -0500
Alan Legg writes ...
I have a script that converts all Pantone colours in a document to
CMYK and sets their separation to true.
Try this ...
tell application "QuarkXPress 4.11"
activate
if document 1 exists then
tell document 1
try
set separation of every color spec whose registration ...
... color is false and locked is false to true
end try
beep
display dialog "DONE! All colours set to process colours!" ...
... buttons "Ok!" default button 1
end tell
else
beep 3
display dialog "ERROR: No open QuarkXPress document!" buttons "Ok!"
default button 1
end if
end tell -- XPress
Harry