Re: Keyboard Question?
Re: Keyboard Question?
- Subject: Re: Keyboard Question?
- From: Paul Berkowitz <email@hidden>
- Date: Thu, 18 Jan 2001 01:20:57 -0800
On 1/17/01 11:55 AM, "Ron Bishop" <email@hidden> wrote:
>
Where can one find out all the ASCII character numbers?
You can get the ones from 32 up for yourself, with the upper numbers 128-255
for mac character format by running a script:
set ls to {}
repeat with i from 1 to 255 -- (crash with 0 may be fixed in OS 9.1?)
set end of ls to ("" & i & tab & tab & ASCII character i)
end repeat
set AppleScript's text item delimiters to {return}
set allAsciis to "" & ls
set AppleScript's text item delimiters to {""}
allAsciis
But you won't get 0 to 31 that way. The regular ones are in various places,
including the Danny Goodman book. But to get those special mac
implementations for the arrow keys and a few others, check the Inside
Macintosh book on the web at the Apple Developer website. I already told you
that in my last reply. Follow the links from the Developer link or tab on
the main Apple page.
--
Paul Berkowitz