HELP! still having problems Saving Quark to EPS
HELP! still having problems Saving Quark to EPS
- Subject: HELP! still having problems Saving Quark to EPS
- From: Cobe Bence <email@hidden>
- Date: Tue, 27 Mar 2001 10:47:37 -0600
Here is the script I am working on
With this, I am trying to get a Postscript file (which works) then an EPS
File (which doesn't) with the EPS Line, I am now getting an Access Not
Allowed Execution Error. My whole goal is to be able to run this script and
not be here to "OK the alert I get- telling me there is binary data, when I
simply save as "EPSF" (which works)
tell application "QuarkXPress 4.11"
activate
repeat
with timeout of 5000 seconds
tell document 1
repeat with i from 1 to count of pages
tell print setup
set registration marks to off
end tell
print page i PostScript file "Colby'sg 4/533:desktop
folder:wherepsgoes:In:" & name & ".ps"
save page i EPS format Mac black and white EPS data
binary EPS in file "Colby's g4/533:desktop folder:wherepsgoes:eps:"
end repeat
end tell
end timeout
close document 1 saving no
end repeat
end tell