in

Quark Forums

Save Page As EPS

Last post 09-22-2008 9:43 AM by brianahebert. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 09-18-2008 1:42 PM

    Save Page As EPS

    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
  • 09-22-2008 9:43 AM In reply to

    Re: Save Page As EPS

    found it....
    if ad_color > 1 then
    save page x in file_path EPS format Standard EPS Output Setup "Composite CMYK" EPS data binary EPS scale 100 bleed "0\"" without transparent page and spread
    else
    save page x in file_path EPS format Standard EPS Output Setup "Grayscale" EPS data binary EPS scale 100 bleed "0\"" without transparent page and spread
    end if
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems