ASCII Value of Function keys
The following table lists the function keys on a standard keyboard, with the corresponding key code values that are used to identify the keys in ActionScript:
Function key
|
Key code
|
ASCII key code
|
F1 | 112 | 0 |
F2 | 113 | 0 |
F3 | 114 | 0 |
F4 | 115 | 0 |
F5 | 116 | 0 |
F6 | 117 | 0 |
F7 | 118 | 0 |
F8 | 119 | 0 |
F9 | 120 | 0 |
F10 | This key is reserved by the system and cannot be used in ActionScript. | This key is reserved by the system and cannot be used in ActionScript. |
F11 | 122 | 0 |
F12 | 123 | 0 |
F13 | 124 | 0 |
F14 | 125 | 0 |
F15 | 126 | 0 |
Other keys
The following table lists keys on a standard keyboard other than letters, numbers, numeric keypad keys, or function keys, with the corresponding key code values that are used to identify the keys in ActionScript:
Key
|
Key code
|
ASCII key code
|
Backspace
|
8
|
8
|
Tab
|
9
|
9
|
Enter
|
13
|
13
|
Shift
|
16
|
0
|
Control
|
17
|
0
|
Caps Lock
|
20
|
0
|
Esc
|
27
|
27
|
Spacebar
|
32
|
32
|
Page Up
|
33
|
0
|
Page Down
|
34
|
0
|
End
|
35
|
0
|
Home
|
36
|
0
|
Left Arrow
|
37
|
0
|
Up Arrow
|
38
|
0
|
Right Arrow
|
39
|
0
|
Down Arrow
|
40
|
0
|
Insert
|
45
|
0
|
Delete
|
46
|
127
|
Num Lock
|
144
|
0
|
ScrLk
|
145
|
0
|
Pause/Break
|
19
|
0
|
; :
|
186
|
59
|
= +
|
187
|
61
|
- _
|
189
|
45
|
/ ?
|
191
|
47
|
` ~
|
192
|
96
|
[ {
|
219
|
91
|
\ |
|
220
|
92
|
] }
|
221
|
93
|
" '
|
222
|
39
|
,
|
188
|
44
|
.
|
190
|
46
|
/
|
191
|
47
|
Comments
Post a Comment