by Tobias Weber <towb@[EMAIL PROTECTED]
>
Nov 22, 2007 at 07:29 PM
In article <user-54F565.18254822112007@[EMAIL PROTECTED]
>,
Sander Tekelenburg <user@[EMAIL PROTECTED]
> wrote:
> set nameList to (read listFile as «class utf8» using delimiter return)
> as list
That seems to be the correct answer to my "how to combise two 'as'
parameters" question. Unfortunately in trying it I found out that as
utf8 clashes with using delimiter and reverts to MacRoman. The following
works:
open for access listFile without write permission
set nameText to read listFile as «class utf8»
close access listFile
set nameList to every paragraph of nameText
--
Tobias Weber