Re-map right click from [shift-F10] to [shift-F9] on Vista

0

shift-F10 is the keyboard shortcut for right clicking. I'd like to change it to F9, because that is easier to find on the keyboard without looking. Is this possible?

Amy B

Posted 2010-10-11T13:47:01.987

Reputation: 101

Answers

3

I think autohotkey should be able to help you do this.
Create a script, and add the following:

+{F9}::
Send +{F10}
return

JackStoneS

Posted 2010-10-11T13:47:01.987

Reputation: 170