Key.getAscii()

watchKeyBoard = [color=#000087]new[/color] [color=#000087]Object/color;watchKeyBoard.[color=#000087]onKeyDown[/color] = [color=#000087]function/color { [color=#000087]trace[/color]("[color=blue]a key is pressed. the key that is pressed is [/color]"+[color=#000087]Key[/color].[color=#000087]getAscii/color);};[color=#000087]Key[/color].[color=#000087]addListener/color; I try to trace the valye of getAscii. But the trace result returns 0, no matter which key i press on the keyboard.Anyone know why? How can i get the Ascii code ? Thanks~