Re: Every Process on Remote OS X machine
Re: Every Process on Remote OS X machine
- Subject: Re: Every Process on Remote OS X machine
- From: christian vick <email@hidden>
- Date: Wed, 18 Sep 2002 13:01:57 +0200
>
> However, when I try it with
>
>
>
> tell application "Finder" of machine "eppc://othermachine"
>
>
>
> I get an error:
>
>
>
> Finder got an error: Cannot find process on host.
>
>
>
> The routine runs fine if I run it locally on the machine. It fails
>
> when I run it remotely?
>
>
>
> Ideas on why? Workarounds?
>
>
I have the same problem. It seems program linking is generally broken on
>
10.2:
I must have mixed up something. Now everything works. However, there is a
real trap if you want to talk from a OS 9 box. I always put the app
reference into a variable:
set remote_finder to application "Finder" of machine "eppc://domain.com"
using terms from application "Finder"
tell remote_finder
list disks
end tell
end using terms from
It works on 10.2, but not in 9. Only this works:
using terms from application "Finder"
tell application "Finder" of machine "eppc://domain.com"
list disks
end tell
end using terms from
Additionally, as John Coelho already said, it's not possible to provide the
user&password in the address (i thought this was supported in AS 1.6 or
1.7). So this works only in OS X:
tell application "Finder" of machine "eppc://username:email@hidden"
Greetings
Christian Vick
_______________________________________________
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.