2nd Post: Problem with program linking over IP
2nd Post: Problem with program linking over IP
- Subject: 2nd Post: Problem with program linking over IP
- From: email@hidden
- Date: Tue, 25 Jun 2002 09:46:48 +0100
I posted this message yesterday but it was immediately followed by a
posting about AppleScript 1.8.3. Therefore, no-one has responded to it! So
I'm posting it again just to take the shine off the announcement... ;-)
Where it says "Both machine are running 9.2.2" can now be read as "...and
AppleScript 1.8.3"
Steve
I'm having problems with a script I'm trying to write. I've broken it down
into it's simplest parts and still I'm hitting problems with remotely
controlling another machine
This compiles and works without a problem:
using terms from Application "Finder"
tell application "Finder" of machine "Test"
get the name of the startup disk
--> "Macintosh HD"
end tell
end using terms from
However,
using terms from Application "Finder"
tell application "Finder" of machine "eppc://192.168.2.3/"
get the name of the startup disk
end tell
end using terms from
Produces "An error of type -916" when it compiles
using terms from Application "Finder"
tell application "Finder" of machine "eppc://192.168.2.3"
get the name of the startup disk
end tell
end using terms from
Produces "Can't get the application's event dictionary" when it compiles
set RemoteFinder to application "Finder" of machine "eppc://172.21.1.39"
using terms from Application "Finder"
tell RemoteFinder
get the name of the startup disk
end tell
end using terms from
Compiles, but gives "Finder got an error: An error of type -932 has
occured" when it is run, flagging "get the name of the startup disk" as
the error.
Program linking is on on both machines, and "Enable program linking over
IP" is on, both machines are running 9.2.2 and it's definitely the right
IP address. Could someone point out to me what I'm missing?
Thanks,
Steve
_______________________________________________
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.