Search found 4 matches

by pondermatic
05 Feb 2018, 14:16
Forum: Scripts and Functions (v1)
Topic: Microsoft Office Keyboard Scroll Wheel
Replies: 16
Views: 9607

Re: Microsoft Office Keyboard Scroll Wheel

mpd671, I had to try selecting different keyboards in the Microsoft Mouse and Keyboard Center until the extra buttons did what I wanted. If that doesn't work for you, you might be able to use AutoHotkey to detect the button codes and launch the apps.
by pondermatic
27 Aug 2016, 10:58
Forum: Scripts and Functions (v1)
Topic: Microsoft Office Keyboard Scroll Wheel
Replies: 16
Views: 9607

Re: Microsoft Office Keyboard Scroll Wheel

Hi ahha,

Each column in the table is a byte number. The cut button sends hex 40 in byte 3. To reassign it to save, add the following code at line 131:

Code: Select all

    if (b3 = 0x40) {
        Send ^s
    }
by pondermatic
15 Jul 2016, 16:27
Forum: Scripts and Functions (v1)
Topic: Microsoft Office Keyboard Scroll Wheel
Replies: 16
Views: 9607

Re: Microsoft Office Keyboard Scroll Wheel

The AHKHID.ahk file is available from https://github.com/jleb/AHKHID.
by pondermatic
03 Jun 2015, 16:40
Forum: Scripts and Functions (v1)
Topic: Microsoft Office Keyboard Scroll Wheel
Replies: 16
Views: 9607

Microsoft Office Keyboard Scroll Wheel

I've published a script that uses the AHKHID library to restore the use of the Microsoft Office Keyboard's scroll wheel in Windows 7 and Windows 8.
https://gist.github.com/pondermatic/224 ... 61d1aeaff7

Go to advanced search