importing images in quark
importing images in quark
- Subject: importing images in quark
- From: Peter Kincaid <email@hidden>
- Date: Tue, 29 Oct 2002 00:05:51 -0600
OS9.1 Quark 4.11
I am trying to create a script that will take a folder of images and place
them into a quark doc. 1 image per page. I am new at scripting but this is
what I have so far.
tell application "Finder"
choose folder with prompt "select folder of images"
set sourcefolder to the result
set sourceitems to every item of sourcefolder whose file type is "EPSF"
tell application "QuarkXPress 4.11"
open file "Mac4204 HD:image template"
tell document 1
repeat with newimages in sourceitems
make new page at beginning
tell page 1
make picture box at beginning with properties
{bounds:{".5", ".5", "10.5", "8"}}
tell picture box 1
set image 1 to newimages
end tell
end tell
end repeat
end tell
end tell
end tell
Needless to say that it doesnt work
any help would be great.
_______________________________________________
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.