Difference between revisions of "PlugIn Development:GameEx MCE Remote Key"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
This enumeration lists the types of keys available on your MCE Remote for use in the [[PlugIn_Development:GameEx_Input_MCE_Remote_Function|Input MCE Remote]] function. | This enumeration lists the types of keys available on your MCE Remote for use in the [[PlugIn_Development:GameEx_Input_MCE_Remote_Function|Input MCE Remote]] function. | ||
<br /><br /> | |||
<div class="note_block_red"><b>PLEASE NOTE:</b> ''This feature is marked in the internal PlugIn documentation as "not yet implemented" as of PlugIn version 1.41!''</div> | |||
<br /> | <br /> | ||
== <span | == <span class="plugin_headline_text">Variables</span> == | ||
<p>Below is a reference of the <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Value]</b></span> set in this enumeration:</p> | <p>Below is a reference of the <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Value]</b></span> set in this enumeration:</p> | ||
<div | <div class="code_variables"> | ||
<span style="color:darkred"><b>MCEButton_OK</b></span> <span style="color:blue"><b>[13]</b></span> : Specifies the MCE remote's <b>OK</b> button.<br /><span style="color:darkred"><b>MCEButton_Clear</b></span> <span style="color:blue"><b>[27]</b></span> : Specifies the MCE remote's <b>CLEAR</b> button.<br /><span style="color:darkred"><b>MCEButton_MoveLeft</b></span> <span style="color:blue"><b>[37]</b></span> : Specifies the MCE remote's <b>LEFT</b> [←] button.<br /><span style="color:darkred"><b>MCEButton_MoveUp</b></span> <span style="color:blue"><b>[38]</b></span> : Specifies the MCE remote's <b>UP</b> [↑] button.<br /><span style="color:darkred"><b>MCEButton_MoveRight</b></span> <span style="color:blue"><b>[39]</b></span> : Specifies the MCE remote's <b>RIGHT</b> [→] button.<br /><span style="color:darkred"><b>MCEButton_MoveDown</b></span> <span style="color:blue"><b>[40]</b></span> : Specifies the MCE remote's <b>DOWN</b> [↓] button.<br /><span style="color:darkred"><b>MCEButton_Number0</b></span> <span style="color:blue"><b>[48]</b></span> : Specifies the MCE remote's <b>NUM 0</b> button.<br /><span style="color:darkred"><b>MCEButton_Number1</b></span> <span style="color:blue"><b>[49]</b></span> : Specifies the MCE remote's <b>NUM 1</b> button.<br /><span style="color:darkred"><b>MCEButton_Number2</b></span> <span style="color:blue"><b>[50]</b></span> : Specifies the MCE remote's <b>NUM 2</b> button.<br /><span style="color:darkred"><b>MCEButton_Number3</b></span> <span style="color:blue"><b>[51]</b></span> : Specifies the MCE remote's <b>NUM 3</b> button.<br /><span style="color:darkred"><b>MCEButton_Number4</b></span> <span style="color:blue"><b>[52]</b></span> : Specifies the MCE remote's <b>NUM 4</b> button.<br /><span style="color:darkred"><b>MCEButton_Number5</b></span> <span style="color:blue"><b>[53]</b></span> : Specifies the MCE remote's <b>NUM 5</b> button.<br /><span style="color:darkred"><b>MCEButton_Number6</b></span> <span style="color:blue"><b>[54]</b></span> : Specifies the MCE remote's <b>NUM 6</b> button.<br /><span style="color:darkred"><b>MCEButton_Number7</b></span> <span style="color:blue"><b>[55]</b></span> : Specifies the MCE remote's <b>NUM 7</b> button.<br /><span style="color:darkred"><b>MCEButton_Number8</b></span> <span style="color:blue"><b>[56]</b></span> : Specifies the MCE remote's <b>NUM 8</b> button.<br /><span style="color:darkred"><b>MCEButton_Number9</b></span> <span style="color:blue"><b>[57]</b></span> : Specifies the MCE remote's <b>NUM 9</b> button.<br /><span style="color:darkred"><b>MCEButton_Number0_2</b></span> <span style="color:blue"><b>[58]</b></span> : Specifies the MCE remote's <b>ALT NUM 0</b> button.<br /></div> | |||
<br /> | <br /> | ||
== <span | == <span class="plugin_headline_text">Code Examples</span> == | ||
=== <span | === <span class="plugin_text_fx">VB.NET</span> === | ||
---- | ---- | ||
<pre | <pre class="code_block_enum"> | ||
Public Enum MCE_Remote_Key | Public Enum MCE_Remote_Key | ||
MCEButton_OK = 13 | MCEButton_OK = 13 | ||
Line 30: | Line 33: | ||
End Enum</pre> | End Enum</pre> | ||
=== <span | === <span class="plugin_text_fx">C#</span> === | ||
---- | ---- | ||
<pre | <pre class="code_block_enum"> | ||
public enum MCE_Remote_Key : uint | public enum MCE_Remote_Key : uint | ||
{ | { |
Revision as of 20:03, 27 April 2014
This enumeration lists the types of keys available on your MCE Remote for use in the Input MCE Remote function.
PLEASE NOTE: This feature is marked in the internal PlugIn documentation as "not yet implemented" as of PlugIn version 1.41!
Variables
Below is a reference of the Variable Name and [Value] set in this enumeration:
MCEButton_OK [13] : Specifies the MCE remote's OK button.
MCEButton_Clear [27] : Specifies the MCE remote's CLEAR button.
MCEButton_MoveLeft [37] : Specifies the MCE remote's LEFT [←] button.
MCEButton_MoveUp [38] : Specifies the MCE remote's UP [↑] button.
MCEButton_MoveRight [39] : Specifies the MCE remote's RIGHT [→] button.
MCEButton_MoveDown [40] : Specifies the MCE remote's DOWN [↓] button.
MCEButton_Number0 [48] : Specifies the MCE remote's NUM 0 button.
MCEButton_Number1 [49] : Specifies the MCE remote's NUM 1 button.
MCEButton_Number2 [50] : Specifies the MCE remote's NUM 2 button.
MCEButton_Number3 [51] : Specifies the MCE remote's NUM 3 button.
MCEButton_Number4 [52] : Specifies the MCE remote's NUM 4 button.
MCEButton_Number5 [53] : Specifies the MCE remote's NUM 5 button.
MCEButton_Number6 [54] : Specifies the MCE remote's NUM 6 button.
MCEButton_Number7 [55] : Specifies the MCE remote's NUM 7 button.
MCEButton_Number8 [56] : Specifies the MCE remote's NUM 8 button.
MCEButton_Number9 [57] : Specifies the MCE remote's NUM 9 button.
MCEButton_Number0_2 [58] : Specifies the MCE remote's ALT NUM 0 button.
MCEButton_Clear [27] : Specifies the MCE remote's CLEAR button.
MCEButton_MoveLeft [37] : Specifies the MCE remote's LEFT [←] button.
MCEButton_MoveUp [38] : Specifies the MCE remote's UP [↑] button.
MCEButton_MoveRight [39] : Specifies the MCE remote's RIGHT [→] button.
MCEButton_MoveDown [40] : Specifies the MCE remote's DOWN [↓] button.
MCEButton_Number0 [48] : Specifies the MCE remote's NUM 0 button.
MCEButton_Number1 [49] : Specifies the MCE remote's NUM 1 button.
MCEButton_Number2 [50] : Specifies the MCE remote's NUM 2 button.
MCEButton_Number3 [51] : Specifies the MCE remote's NUM 3 button.
MCEButton_Number4 [52] : Specifies the MCE remote's NUM 4 button.
MCEButton_Number5 [53] : Specifies the MCE remote's NUM 5 button.
MCEButton_Number6 [54] : Specifies the MCE remote's NUM 6 button.
MCEButton_Number7 [55] : Specifies the MCE remote's NUM 7 button.
MCEButton_Number8 [56] : Specifies the MCE remote's NUM 8 button.
MCEButton_Number9 [57] : Specifies the MCE remote's NUM 9 button.
MCEButton_Number0_2 [58] : Specifies the MCE remote's ALT NUM 0 button.
Code Examples
VB.NET
Public Enum MCE_Remote_Key MCEButton_OK = 13 MCEButton_Clear = 27 MCEButton_MoveLeft = 37 MCEButton_MoveUp = 38 MCEButton_MoveRight = 39 MCEButton_MoveDown = 40 MCEButton_Number0 = 48 MCEButton_Number1 = 49 MCEButton_Number2 = 50 MCEButton_Number3 = 51 MCEButton_Number4 = 52 MCEButton_Number5 = 53 MCEButton_Number6 = 54 MCEButton_Number7 = 55 MCEButton_Number8 = 56 MCEButton_Number9 = 57 MCEButton_Number0_2 = 58 End Enum
C#
public enum MCE_Remote_Key : uint { MCEButton_OK = 13, MCEButton_Clear = 27, MCEButton_MoveLeft = 37, MCEButton_MoveUp = 38, MCEButton_MoveRight = 39, MCEButton_MoveDown = 40, MCEButton_Number0 = 48, MCEButton_Number1 = 49, MCEButton_Number2 = 50, MCEButton_Number3 = 51, MCEButton_Number4 = 52, MCEButton_Number5 = 53, MCEButton_Number6 = 54, MCEButton_Number7 = 55, MCEButton_Number8 = 56, MCEButton_Number9 = 57, MCEButton_Number0_2 = 58, }