Skip to content

Instantly share code, notes, and snippets.

@kode54
Created May 28, 2014 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kode54/10631c6ffd49a53f70ff to your computer and use it in GitHub Desktop.
Save kode54/10631c6ffd49a53f70ff to your computer and use it in GitHub Desktop.
Simple script to force Logitech's now unsupported Flow Scroll background app to always enable unsmoothed 4x scroll wheel precision on mice such as the G9x.
#include <WinAPI.au3>
#include <SendMessage.au3>
While 1
Sleep( 50 );
Local $hWnd
$hWnd = _WinAPI_FindWindow( "LogiSmoothScrlBckGrndWnd", "LogiSmoothScrlBckGrndWnd" )
If $hWnd Then
_SendMessage( $hWnd, 0x757, 1, 1 );
EndIf
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment