Keydown

This is a code that I have on a movie clip:

onClipEvent(enterFrame){
if (Key.isDown(Key.SPACE)){
_root.acc = 2;
}else{
_root.acc = 10;
}
}

How do I make on key A - so you can press A instead of Space?