Hi
it seems Flex trapKeys(e:KeyboardEvent) has problems when user is pressing some special marks ; / ? = + ( ) & * with non-us (european) keyboards. Pressing these require shift key.
I am using String.fromCharCode
Any ideas why e.g. pressing semicolor combination faulty outputs "<"
var key:String=String.fromCharCode(e.charCode);
here is a workaround that I am using for semicolon now
if ((e.charCode == 60) && (e.keyCode==188)) {key =';';}
if ((e.charCode == 43) && (e.keyCode==187)) {key ='?';}
There is also same problem with this FLASH event
onKeyDownEvent(keyboardEvent:KeyboardEvent)