Re: applescript-users digest, Vol 2 #1263 - 15 msgs
Re: applescript-users digest, Vol 2 #1263 - 15 msgs
- Subject: Re: applescript-users digest, Vol 2 #1263 - 15 msgs
- From: Steve Zellers <email@hidden>
- Date: Fri, 2 Nov 2001 01:37:52 -0800
Hi Gerard,
In Mac OS X 10.1 and above (the only releases where remote AppleEvents
work) you need to specify an application URL in the machine parameter:
tell application "Finder" of machine "eppc://hostname"
end
You will be prompted for the username and password. You can include the
username and password in the URl to avoid the authentication dialog. The
full spec for the URL is:
eppc://[username[:password]@]host.domain/App Name
--smz
On Thursday, November 1, 2001, at 06:50 PM, applescript-users-
email@hidden wrote:
Message: 1
Date: Thu, 1 Nov 2001 11:02:47 +0100
Subject: OSX Applescript and remote applications?
From: =?ISO-8859-1?Q?G=E9rard_Iglesias?= <email@hidden>
To: email@hidden
Hello everyone,
I am new with Applescript but I am a long time Cocoa developer, and I am
planning to begin to use intensively Applescript to make my App
scriptable and to use Applescript studio to make OSX applications.
For now I am trying to control "Internet connect" remotely to be able to
connect and disconnect my iMac that play the role of a base station.
But it seems that the simpler script as this one doesn't work:
tell application "TextEdit" of machine "Coruscan"
make new document at the beginning of documents
end tell
When I check the syntax, the string "of machine "Coruscan"" disapear?
Thank you in advance.
Girard
--__--__--