Re: File name list help?
Re: File name list help?
- Subject: Re: File name list help?
- From: Michelle Steiner <email@hidden>
- Date: Sat, 6 Oct 2001 23:12:23 -0700
On 10/6/01 9:53 PM, T.J. Mahaffey <email@hidden> wrote:
>
What I have so far works like a champ, but I'd like to be able to insert a
>
common character after each item in the list. In it's current state, the
>
paste-able clipboard comes out like this: item1item2item3
This will do it for you:
set thelist to {"item1", "item2", "item3"}
set {tid, text item delimiters} to {text item delimiters, ", "}
set theItems to thelist as text
set text item delimiters to tid
theItems
--> "item1, item2, item3"
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spiritual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------