ActionScript 2.0 Language Reference |
|
|
|
| ActionScript classes > Key > INSERT (Key.INSERT property) | |||
public static INSERT : Number
The key code value for the Insert key (45).
Availability: ActionScript 1.0; Flash Player 5
The following example creates a new listener object and defines a function for onKeyDown. The last line uses addListener() to register the listener with the Key object so that it can receive notification from the key down event and display information in the Output panel.
var keyListener:Object = new Object();
keyListener.onKeyDown = function() {
if (Key.isDown(Key.INSERT)) {
trace("You pressed the Insert key.");
}
};
Key.addListener(keyListener);
|
|
|
|