Re: Doing a Save as in Quark
Re: Doing a Save as in Quark
- Subject: Re: Doing a Save as in Quark
- From: Hans Haesler <email@hidden>
- Date: Sun, 2 Feb 2003 11:10:19 +0100
On Fri, 31 Jan 2003, email@hidden wrote:
>
I need to do a applescript that will open a quark 5.0n document and then
>
save it as a Quark 4.0 document.
>
>
I have it working on opening and saving, I'm just stumped on how to make it
>
save as and select the 4.0 version.
Dan,
please try this:
---
set aDoc to (choose file with prompt "Select an XPress document" of type "XDOC") as string
tell application "QuarkXPress 5.01"
open alias aDoc
save document 1 version vers 40
close document 1
end tell
---
Hans Haesler <email@hidden>
_______________________________________________
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.