Re: Collect for Output
Re: Collect for Output
- Subject: Re: Collect for Output
- From: "Bill Quillen" <email@hidden>
- Date: Thu, 06 Dec 2001 12:44:28 -0600
- Organization: TAP Publishing Company
Thanks to all (kim, Robert, and Peter) for the advice! Here is the basic
script before adding some more bells and whistles. I'm sure it can be
improved, but I'm just pleased that it works!
set thefolder to (choose folder) as alias
tell application "QuarkXPress 4.11"
tell document 1
set thedoc to the name as string
set thepaths to file path of every image whose file type * "null"
tell application "Finder"
repeat with i from 1 to (the number of every alias of thepaths)
set thepic to alias i of thepaths as alias
move thepic to thefolder replacing conflicts -- in case the same
image is used multiple times
end repeat
end tell
end tell
end tell