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: Claudio <email@hidden>
- Date: Fri, 28 Sep 2001 10:22:06 -0200
on 28/09/2001 3:04, email@hidden at
email@hidden wrote:
Hi Michael .
Tks . Already it is functioning perfectly .
>
>
> 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
Tks .
Claudio .