Re: Photo list
Re: Photo list
- Subject: Re: Photo list
- From: Michelle Steiner <email@hidden>
- Date: Wed, 5 Sep 2001 15:53:38 -0700
On 9/5/01 3:22 PM, email@hidden <email@hidden> wrote:
>
I have done it in FMP, but I also need to change the actual photo name
>
and all attempts have failed miserably, anybody want to take a shot at it?
This will change the names to the format you want; I assume that's the
help you were asking for, and not how to read or write the data.
--Michelle
set foo to {"Background Sky.jpg 00659", "Sunset 00660.jpg", "Clouds
00664.jpg", "Sunshine 00665.jpg"}
set {tid, text item delimiters} to {text item delimiters, " "}
set foobar to {}
repeat with bar in foo
set foobar to foobar & (text item -1 of bar & " " & text items 1 through
-2 of bar)
end repeat
set text item delimiters to tid
set foo to foobar
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spiritual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------