Re: Applescritp Netscape Url adress for Filemaker database .
Re: Applescritp Netscape Url adress for Filemaker database .
- Subject: Re: Applescritp Netscape Url adress for Filemaker database .
- From: Michael Scheurer <email@hidden>
- Date: Fri, 28 Sep 2001 12:43:38 +1000
on 27/9/01 4:15 AM, Claudio wrote:
>
Hi all .
>
>
I need to make one applescript that he copies me a Adress de Website of
>
Netscape 4.6 and after that I create a new register in a data base of the
>
Filemaker with this copied address.
On a basic level, this will do the job:
tell application "Netscape Communicator"
set theAddy to URL of window 1
end tell
tell application "FileMaker Pro"
tell window 1
set cell "URL" to theAddy
end tell
end tell
michael