-3

what name can I use for the Logitech button that appears on their keyboard that I'm using. I want to reprogram it in Autohotkey. I see it opens the calculator if you did not install the the proprietary software. Thanks! e.g.

Calculator::  ;then some commands
Logitech:: ;then some commands
Relaxed1
  • 983
  • 3
  • 13
  • 21

2 Answers2

2

Here is how I set my Calc key to launch Google Chrome with AHK:

Launch_App2::
    Run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
Damien
  • 624
  • 7
  • 25
1

You can use the keyboard hook along with viewing the keyboard history.

The process for finding these keys is specified in the documentation.

Elliot DeNolf
  • 2,920
  • 1
  • 15
  • 12
  • ...I ran a script with code: #InstallKeybdHook KeyHistory and this showed me that the solution is: SC121:: – Relaxed1 Apr 12 '16 at 08:04