'Concatenate' from a list
'Concatenate' from a list
- Subject: 'Concatenate' from a list
- From: Olivier Berquin <email@hidden>
- Date: Mon, 13 May 2002 15:33:21 +0200
Hi all,
I have a database in FileMaker with 10 fields and above 6000 records.
I would like to have one variable with item 2 thru 9 like this:
--
tell application "FileMaker Pro"
tell database 1
set MyRec to record 1
end tell
end tell
set MyRecTitle to (item 2 of MyRec & tab & ,
item 3 of MyRec & tab & ,
item 4 of MyRec & tab & ,
item 5 of MyRec & " " & ,
item 6 of MyRec & tab & ,
item 7 of MyRec & tab & ,
item 8 of MyRec & tab & ,
item 9 of MyRec)
--
Nota: I have a 'space' between item 5 and 6 of 'MyRec'.
Is this way is the better/faster way to do this ?
TID can help me ?
TIA.
Olivier.
N.B. I would like *all* to thank you for the assistance which you bring,
with me and other people who need help...
_______________________________________________
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.