<key_presses>

Contains one or more <key_press key_code=""> tags to perform actions as a result of keyboard entries by the user.

Child of: <node name="">
Parent of: <key_press key_code="">
See also: <press>, <release>

Example:

<key_presses>
            <key_press key_code="a">
                        <press>
                                    <next_node>press</next_node>
                                    ...
                        </press>
                        <release>
                                    <next_node>release</next_node>
                                    ...
                        </release>
            </key_press>
             <key_press key_code="66">
                        <press persistent="FALSE">
                                    <next_node>press</next_node>
                                    ...
                        </press>
                        <release persistent="FALSE">
                                    <next_node>release</next_node>
                                    ...
                        </release>
            </key_press>
</key_presses>

Note: For a list of Flash key codes, visit here.