Hey,
I m trying to encode certain values that i receive from keyboard event.
Basically i want to check if a certain key combination has been pressed or not, so for that i m converting the key codes into sequence/pattern and store it in an object and a value(function) against each code sequence.
Now i have to use four bytes and in first byte(MSB) i ve to store shift, alt, ctrl respectively and in the last(LSB) i have to store the keycode of the key pressed.
Here is the code:
private function m_encodeValue(key:String, Ctrl:Boolean = true, Alt:Boolean = true, Shift:Boolean = false):uint
{
var encodedValue:uint;
encodedValue = uint(Shift) << 2 | uint(Alt) << 1 | uint(Ctrl);
encodedValue = encodedValue | (uint(key.toUpperCase().charCodeAt(0)) << 24);
return encodedValue;
}