Difference between revisions of "Autohotkey"

From JRiverWiki
Jump to: navigation, search
Line 3: Line 3:
 
'''Example:'''
 
'''Example:'''
  
To use [[Media_Center_Core_Commands#View|MCC_THEATER_VIEW command]] (23000) in Playing Now mode (to switch 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 something like:
+
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 something like:
  
<tt>run mc19.exe /mcc 22001`,2</tt>
+
<code>run mc19.exe /mcc 22001`,2</code>
  
 
[[Category:Frequently Asked Questions]]
 
[[Category:Frequently Asked Questions]]
 
[[Category:Third-Party Integration]]
 
[[Category:Third-Party Integration]]

Revision as of 13:38, 11 April 2014

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 something like:

run mc19.exe /mcc 22001`,2