Re: ASCII Character Map
Re: ASCII Character Map
- Subject: Re: ASCII Character Map
- From: Steve Mills <email@hidden>
- Date: Mon, 13 Oct 2003 10:07:00 -0500
On Monday, Oct 13, 2003, at 04:00 US/Central, Richard Fairbanks wrote:
I've been searching for a listing of the ASCII codes for the keys like
home, end, page up, page down, etc. Even BBEdit didn't list them! If I
recall, the FMPro book "Scriptology" may have listed them, but I don't
have access to a copy anymore. Does anyone know of any source that
lists the ASCII characters 1-32?
Not all the keys have unique ASCII values for the character codes, so
you can't simulate them simply by doing a keydown of ascii character x.
Like all the function keys use the same char code, but different key
codes. However, the 6 keys above the arrow keys do have ASCII char
codes:
home = 1
end = 4
up = 11
down = 12
forward delete = 127
help = 5
arrow keys:
left = 28
right = 29
up = 30
down = 31
escape = 27
Steve Mills
Drummer, Mac geek
http://sjmills5.home.mchsi.com/
_______________________________________________
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.