Error during command authentication.

Error - unable to initiate communication with LISTSERV (errno=10061, phase=CONNECT, target=127.0.0.1:2306). The server is probably not started. LISTSERV - MACSCRPT Archives - LISTSERV.DARTMOUTH.EDU

>>>>  IF done *within* FileMaker in a perform applescript step:
>>>>
>>>>  Delete every request
>>>>  Set NR to (Create new request)
>>>>  Copy "Seattle" to cell "City" of NR
>>>>  Find
>>>>
>>>>  Leaves you in Find Mode.
>
> You are wrong about the applescript command "find" - it's job is to
> perform the find. Within Filemaker's own scripting language that job
> is done by "Perform Find". You must be doing something else to leave
> the database in find mode. Try this
>
> tell application "FileMaker Pro"
>   tell database "Addresses.fp5"
>       delete every request
>       create new request
>       set cell "name.first" of request 1 to "malcolm"
>       find
>    end tell
> end tell

You aren't listening.

Did you try this yourself?
From WITHIN FILEMAKER? In a ScriptMaker "perform applescript" step?

It doesn't work.

The fact that you used a tell application "FileMaker Pro" statement suggests
that you are performing this action externally, from Script Editor or
something. Tell statements are not necessary in FileMaker "perform
applescript" script step.