it will not work under W8.1 using the new version of AHK
can anybody tell me what script I need to use now please
Code: Select all
; --------------------------------------------------
; Lines that start with a ; semicolon are comments.
; Microsoft Office Keyboard RT9450: Making the ScrollWheel work under Windows 7. ScrollUp/Down Normal, Fast, Faster, Fastest
sc10B Up::Send {WheelDown}
sc111 Up::Send {WheelDown 3}
sc112 Up::Send {WheelDown 5}
sc11F Up::Send {WheelDown 7}
sc10B Down::Send {WheelUp}
sc111 Down::Send {WheelUp 3}
sc112 Down::Send {WheelUp 5}
sc11F Down::Send {WheelUp 7}
Return
; --------------------------------------------------