Re: Unicode characters
Re: Unicode characters
- Subject: Re: Unicode characters
- From: John Delacour <email@hidden>
- Date: Wed, 9 Apr 2003 00:58:17 +0100
- Mac-eudora-version: 6.0a14
At 9:33 am -0700 8/4/03, Paul Berkowitz wrote:
Then your probalem will be how to inspect the result. You will probably have
to write it to a Unicode file and open it in TextEdit, although perhaps
Script Editor 2 is displaying Unicode results - I haven't checked yet. (JD,
have you?)
Yes, about nine hours ago when I posted the answer :-)
set fU to "/tmp/ab.txt"
set f to POSIX file fU
set a to (ASCII character 0) & "a"
set parasep to " )"
set b to (ASCII character 0) & "b"
open for access f with write permission
set eof f to 0
write (ASCII character 254) & (ASCII character 255) to f
write a & parasep & b to f
close access f
do shell script "open -e " & fU
_______________________________________________
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.