Skip to main content

Function Key ....


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

Popular posts from this blog

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...