Re: 'Concatenate' from a list
Re: 'Concatenate' from a list
- Subject: Re: 'Concatenate' from a list
- From: Emmanuel <email@hidden>
- Date: Mon, 13 May 2002 19:11:21 +0200
At 3:33 PM +0200 13/5/02, Olivier Berquin wrote:
>
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)
---------------- untested - not even checked once written
set AppleScript's text item delimiters to tab
set myTmpList to {items 2 thru 5 of MyRec as text,items 6 thru 9 of MyRec
as text}
set AppleScript's text item delimiters to space
set MyRecTitle to myTmpList as text
-----------------
JEQCA
Emmanuel
_______________________________________________
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.