Re: Saving files in QUARK error
Re: Saving files in QUARK error
- Subject: Re: Saving files in QUARK error
- From: Digital Magic Design Studio <email@hidden>
- Date: Mon, 02 Dec 2002 20:35:21 +0100
Hi Rudy....
>
Problem 1-------------------
>
"Without template" will save it as a quark file.
>
save document 1 in (theSavePath & FileName & ".QXP") without template
No luck with this so far...
Not a nice solution, but I worked around it...
----------------------------
--Saving the document
set theSavePath to "Folder:"
set FileName to "filename"
save document 1 in (theSavePath & FileName & ".QXP")
set filetype to "XDOC"
tell application "Finder"
set the file type of the file (theSavePath & FileName & ".QXP") to
filetype
end tell
----------------------------
By changing the filetype namualy quark recognizes it as Plain quark-document
file.
>
Problem 2----------------
>
I am interested in the replies you get, I have the same problem and no
>
solution. I am trying to save as EPS and then PDF.
>
Ruby
THIS SOLUTION WORKS FOR ME!!!
I had the problem that quark returned a request to allow binary data in
illustrator file.
I solved this by using the "button returned" command...
Now it creats an .quark-eps file... i drop this in a distiller-watch folder
and it runs perfect....
But real answer i didn't get so far!
-----------------------------
set outFolder to "Folder:" -- whatever you want
tell document 1
repeat with i from 1 to count of pages
set outFile to outFolder & FileName & i & ".eps"
try
save page i in outFile
button returned
set ctr to ctr + 1
end try
end repeat
end tell
----------------------------
_______________________________________________
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.