Re: Renaming files in Finder: why so slow?
Re: Renaming files in Finder: why so slow?
- Subject: Re: Renaming files in Finder: why so slow?
- From: "John W. Baxter" <email@hidden>
- Date: Sun, 31 Aug 2003 08:35:34 -0700
- Envelope-to: email@hidden
On 8/30/2003 17:24, "Michelle Steiner" <email@hidden> wrote:
>
> set fContents to (every item of theList)
>
>
Shouldn't be needed. It's the same as setfContents to thelist.
They are not quite the same (it may not matter in the context at hand, which
I've lost).
set fContents to (every item of theList)
should be more like
copy theList to fContents
Having claimed that, I'll test:
set theList to {1, 2, 3}
set list2 to (every item of theList)
set list3 to theList
copy theList to list4
set item 2 of theList to "two"
{list2, list3, list4}
Result was {{1, 2, 3}, {1, "two", 3}, {1, 2, 3}}
--John
_______________________________________________
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.