Re: Does Quark 3.32 support Program Linking
Re: Does Quark 3.32 support Program Linking
- Subject: Re: Does Quark 3.32 support Program Linking
- From: JJ <email@hidden>
- Date: Wed, 11 Jul 2001 09:57:19 +0200
>
On 10/7/01 8:37 AM +1000, Wadson, David, email@hidden,
>
wrote:
>
>
> I'm trying to find out of QuarkXPress 3.32 supports program linking. I've
>
> doublechecked the set up for it (made sure Program linking is turned on,
>
> correct user permissions, etc.) but the application cannot be found on the
>
> remote computer. However, QuarkXPress 4.x seems to work fine. Is there
>
> something I'm overlooking or is this not supported in that version?
>
>
I believe it's unsupported. In fact, I was rather surprised to find it
>
supported in version 4.
As a workarround, you can put applets in your remote machine and run it. If
you want control the process, you can include in the error clauses:
try
your_code
on error mssg
tell application "Finder"
set error_file to (make file)
write mssg to error_file
set moved_file to (move error_file to desktop)
tell application "Finder" of machine "Julio" (opt+L)
of zone "mac" to open moved_file
delete error_file
end tell
end try
JJ