calling a custom applescript on a remote machine
calling a custom applescript on a remote machine
- Subject: calling a custom applescript on a remote machine
- From: Russ McBride <email@hidden>
- Date: Sat, 21 Dec 2002 18:04:47 -0500
This should be easy. I'm trying to call a custom applescript on a
remote machine.
I've been looking at Danny Goodman's example which requires a
compiled always-open applescript app running on the remote machine:
on networkRun(myScript)
return (run script (myScript))
end networkRun
You can then have a script on the local machine like this:
set remoteApp to application "SomeRemoteDrive_remotePath_to_networkRun"
tell remoteApp
networkRun(localScript)
end tell
script localScript
beep
end script
Alas, no dice. And I'd rather have the script I'm running remain on
the remote machine. Anyone have any working examples?
thanks,
Russ
_______________________________________________
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.