9

how do i assign commands to the "calculator" or "favorite" keys with autohotkey?

5
  • Which OS are you using?
    – ChrisF
    Commented Aug 28, 2009 at 10:28
  • Windows.
    – RCIX
    Commented Aug 28, 2009 at 10:40
  • It would probably be helpful to be more specific (i.e. XP, Vista, 7 (or even more specific, i.e. XP Pro 32-bit, Vista Home Premium 64 bit)) Commented Aug 28, 2009 at 16:34
  • 7 in this case, but my problem has been solved.
    – RCIX
    Commented Aug 29, 2009 at 2:43
  • With this script you can see what key was pressed: github.com/mihaifm/screenkey.ahk Its very useful and you can save time.
    – Exnius
    Commented Nov 6, 2013 at 5:31

5 Answers 5

7

The favorites key is called "Multimedia keys" in AHK. The Calc key could be Launch_App1 or Launch_App2, but if not, see Multimedia keys for detailed instructions.

0
2

Below is how I set my Calc key to launch Google Chrome:

Launch_App2::
    Run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

1

If you open a script, click on "open" and then view key history, it should show the name you can use to remap it there. Also, check the help file, I believe it has a list of common uncommon keys.

4
  • what's odd is that it shows the F key being pressed....
    – RCIX
    Commented Aug 28, 2009 at 10:44
  • however, the "state" column has an "a" in it.
    – RCIX
    Commented Aug 28, 2009 at 10:45
  • Is it possible the keyboard is just shooting off a series of keys? My friend had a keyboard like that. Does it work fine without drivers, and so?
    – Phoshi
    Commented Aug 28, 2009 at 11:46
  • I didn't install any specific ones, but it's a microsoft keyboard so maybe it installed some automatically though...
    – RCIX
    Commented Aug 29, 2009 at 2:37
-1

You can also assign a shortcut key to the application's shortcut. The only caveat of this is that you need to use a shortcut key that Windows deems acceptable (such as CTRL+ALT+something) which might not be exactly what you like.

Right click the shortcut in question, and hit properties. You should then be able to assign a keyboard shortcut.

1
  • 2
    I specifically want to use Autohotkey as it provides more flexibility.
    – RCIX
    Commented Aug 29, 2009 at 2:36
-1

From http://support.microsoft.com/kb/181855

Select the shortcut for the application, Rightclick and select properties, select tab "shortcut". Click in "shortcut key" (which has none written in it). Now press the HotKey that you want to use. It will automatically appear in the box. e.g. if you press ^F12 then CTRL-F12 will appear in the box. Click apply and hit ok.

1
  • 2
    I specifically want to use Autohotkey as it provides more flexibility.
    – RCIX
    Commented Aug 29, 2009 at 2:35

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .