PDA

View Full Version : keycodes for a-z


Paladin
09-05-2003, 06:34 PM
Hi,

Can anyone tell me what the ASCII keycodes are for a-z (small caps). The Macromedia Actionscrip reference only shows A-Z (capital letters). Thanks!

Paladin:)

farafiro
09-07-2003, 04:26 AM
http://www.asciitable.com/

snapple
09-08-2003, 11:08 AM
Make a movie clip with a dynamic txt box in it and put this code on it:


onClipEvent(keyDown){
whichKey = (Key.GetAscii());
_root.display.output = whichKey;

}


Or you could just have an empty mc and and just trace the value.

This way it saves you looking up the table, just keep the fla to hand and all you have to do is press a key, not too hard. Just press the CAPS LOCK if you want those values.

snapple :)