Re: (no subject)
Re: (no subject)
- Subject: Re: (no subject)
- From: Michelle Steiner <email@hidden>
- Date: Tue, 23 Jan 2001 11:17:34 -0800
On 1/23/01 3:24 AM, Mr Tea <email@hidden> wrote
>
set addExt to (every item of selection whose file type istheType)
>
repeat with theFile in addExt
>
set theFile's name to theFile's name & theExt
>
end repeat
A minor modification, if I may...
set addExt to (every item of selection whose file type is theType)
repeat with theFile in addExt
if text -4 through -1 of (theFile's name) is not theExt then
set theFile's name to theFile's name & theExt
end if
end repeat
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | Hard as it may be to believe, my |
| email@hidden | life has been based on a true story. |
----------------------------------------------------------------------