Re: continuation character
Re: continuation character
- Subject: Re: continuation character
- From: Paul Berkowitz <email@hidden>
- Date: Sat, 09 Dec 2000 09:24:26 -0800
On 12/9/00 6:59 AM, "Richard 23" <email@hidden> wrote:
>
The above link shows the current and (?) future mappings as well
>
as linking to the script's online readme document.
Except, of course, it doesn't (since the 'befores' got mangled), but by
including the ASCII numbers we can check it for real. Thank you.
If anyone doesn't have a list of all the ASCII characters, you can make one
easily like this, although most of the low ASCIIs 0-31 will be meaningless
squares; you have to look those up somewhere like the Danny Goodman book:
set ls to {}
repeat with i from 1 to 255 -- don't try 0
set end of ls to "" & i & tab & tab & ASCII character i
end repeat
set AppleScript's text item delimiters to {return}
set txt to "" & ls
set AppleScript's text item delimiters to {""}
txt
--
Paul Berkowitz