there are instances when I want to export a file to eps in color and others I want to export in grayscale. This was possible in 6.52, but I don't find any references for automating the color setting in 7.32. Here's the gist of it:
tell application "QuarkXPress"
tell document 1
if adColor > 1 then
save page pageNumber in (finalFolder & finalFileName as string) EPS format Mac color EPS data binary EPS scale 100 bleed "0\"" without transparent page and spread
else
save page pageNumber in (finalFolder & finalFileName as string) EPS format Mac black and white EPS data binary EPS scale 100 bleed "0\"" without transparent page and spread
end if
end tell
end tell
Can anyone help me translate the same effect in 7.32?
Thanks in advance