Using a static method in as3, I can get a charCode from a character in a string.
How can I get the keyCode from a character in a string? Do I need to run this function through javascript (if I can do this in Javascript...)
|
1
|
Using a static method in as3, I can get a charCode from a character in a string. How can I get the keyCode from a character in a string? Do I need to run this function through javascript (if I can do this in Javascript...)
|
||
|
|
|
|
Copy and paste as "KeyCodeUtil.as", put it under the folder: net/onthewings/utils
|
|||
|
|
|
|
Why are you getting the keycode from a string? Why not get it directly from the KeyboardEvent? Below is a stripped down version of the sample code in the documentation that shows how to handle and retrieve the keycode from the
|
||
|
|
|
|
If you really do have a string that needs to be read and listening to the keyboard is not an option (as Soviut suggests) then you will need to ensure the string is delimited some how, mostly likely with commas - as the number of characters is not the same for each keyCode, and some keyCodes are Strings while others are uint. Here is a list of all the keyCode constants: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/ui/Keyboard.html |
||
|
|