Difference between revisions of "OSC:EOS SendKeyUp"
From Moving Light Assistant
(Added Page.) |
|||
Line 9: | Line 9: | ||
''Example.'' | ''Example.'' | ||
− | :<code>OSC:EOS_SendKeyUp(" | + | :<code>OSC:EOS_SendKeyUp("Data")</code> |
− | This would | + | This would release a held down Data key on the console. |
Latest revision as of 23:44, 17 March 2015
EOS_SendKeyUp( key )
- key is a string.
This function will send a key up to the console. If you want to send a button push (down and up), you should use the EOS_SendKey function. It is a good idea to make sure that key down commands are matched with a key up command.
The name of the key generally matches the physical button on the console, but their are some exceptions. NOTE: for a list of supported key names, look in the magic sheet editor select "Console Button" magic sheet item, and see the list of Hard Keys options.
Example.
OSC:EOS_SendKeyUp("Data")
This would release a held down Data key on the console.