Autohotkey: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Autohotkey is a program that can be used to make hot keys etc. When used with command lines or MCC commands, there is one t...") |
No edit summary |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Autohotkey is a program that can be used to make hot keys etc. When used with [[The_Command_Line|command lines]] or [[Media_Center_Core_Commands|MCC commands]], there is one thing to remember. |
[http://www.autohotkey.com/ Autohotkey] is a program that can be used to make hot keys etc. When used with [[The_Command_Line|command lines]] or [[Media_Center_Core_Commands|MCC commands]], there is one thing to remember. Autohotkey requires commas to be escaped with a [http://en.wikipedia.org/wiki/Grave_accent grave accent] (`) character. Otherwise Autohotkey will interpret it as the next parameter for a Autohotkey command. |
||
Example: |
'''Example:''' |
||
The code for switching to Playing Now in Theater View is MCC 22001,2 |
|||
In Autohotkey the command would be |
|||
To use the [[Media_Center_Core_Commands#View|MCC_THEATER_VIEW command]] (23000) in Playing Now mode (in order to program a button that switches directly to Theater View's Playing Now) with the [[Media_Center_Core_Commands#Issuing_a_command_from_the_command_line|MC Command Line launcher]] in Autohotkey, you'd use: |
|||
⚫ | |||
⚫ | |||
[[Category:Frequently Asked Questions]] |
|||
[[Category:Third-Party Tools]] |
Latest revision as of 15:43, 22 February 2015
Autohotkey is a program that can be used to make hot keys etc. When used with command lines or MCC commands, there is one thing to remember. Autohotkey requires commas to be escaped with a grave accent (`) character. Otherwise Autohotkey will interpret it as the next parameter for a Autohotkey command.
Example:
To use the MCC_THEATER_VIEW command (23000) in Playing Now mode (in order to program a button that switches directly to Theater View's Playing Now) with the MC Command Line launcher in Autohotkey, you'd use:
run mc19.exe /mcc 22001`,2