Re: Importing pictures in QuarkXPress
Re: Importing pictures in QuarkXPress
- Subject: Re: Importing pictures in QuarkXPress
- From: Hans Haesler <email@hidden>
- Date: Tue, 28 May 2002 20:57:54 +0200
On Sat, 25 May 2002, Michel Alberts wrote:
>
This is a simple way to import pictures in QuarkXPress.
>
without using the Finder Open File dialog
>
>
on open (theFile)
>
tell application "Finder"
>
tell application "QuarkXPress"
>
tell current box
>
set image 1 to theFile
>
end tell
>
end tell
>
end tell
>
end open
Michel,
it could even be simpler: don't use the "Finder" tell block.
---
on open (theFile)
tell document 1 of application "QuarkXPress 4.11"
tell current box
set image 1 to theFile
end tell
end tell
end open
---
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.