Re: my 1st applescript - how to get value from record?
Re: my 1st applescript - how to get value from record?
- Subject: Re: my 1st applescript - how to get value from record?
- From: Ben Dougall <email@hidden>
- Date: Thu, 12 Oct 2006 00:19:22 +0100
On Thursday, October 12, 2006, at 12:16 am, Matthew Smith wrote:
On 12/10/2006 09:08, "Ben Dougall" <email@hidden> wrote:
tell application "Internet Connect"
get connect
end tell
set L to the result
set s to speed of L <<<<< how to do this line so it works?
display dialog s
Applescript doesn't know what speed of L is. It has no context. You
need to
wrap it in a tell block for Internet Connect.
tell application "Internet Connect"
set L to (get connect)
set s to speed of L
end tell
display dialog s
thank you.
Ben.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden