• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Filemaker Pro Script Needed
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Filemaker Pro Script Needed


  • Subject: Re: Filemaker Pro Script Needed
  • From: Cornwall <email@hidden>
  • Date: Fri, 19 Jul 2002 09:59:09 -0700

At 4:55 PM -0700 7/18/02, Howard Sambol wrote:
>To all:
>
>I need an Applescript that extracts email addresses from records in
>a Filemaker found set and creates a string of these addresses
>separated by commas. The script then pastes this string of addresses
>into the proper place in Eudora. The script below is what I have so
>far. This one is designed for one email address being viewed rather
>the entire found set. All suggestions are appreciated.

I'll take the first part, getting the addresses into comma separated text.

tell application "FileMaker Pro"
set floss to field "Address" of document 1
--"field" gets a list from every record of the found set
--"document" addresses the found set
end tell
set AppleScript's text item delimiters to ","
set bread to floss as text
set AppleScript's text item delimiters to {""}
bread --> comma separated text

Corny
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.

References: 
 >Filemaker Pro Script Needed (From: Howard Sambol <email@hidden>)

  • Prev by Date: illustrator printing
  • Next by Date: Re: Passing *possible* variables to a handler
  • Previous by thread: Filemaker Pro Script Needed
  • Next by thread: Re: Filemaker Pro Script Needed
  • Index(es):
    • Date
    • Thread