Re: Filemaker Pro Script Needed
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.