f.lux f.lux forum
    • Recent
    • Popular
    • Register
    • Login

    hotk

    Windows v4
    1
    1
    73
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • SteveMyloS
      SteveMylo
      last edited by

      Here is a way to scroll the mouse wheel up/down at the very (top of your screen only) to adjust brightness.
      NOTE* you must have Autohotkey installed and run the script. If you don't have Autohotkey, then message me and I'll give you the .exe file.
      I have mapped the scroll wheel to F.lux default shortcuts Alt 'PGEUP/DOWN' so the default keys will still work but the scroll wheel is better and faster.

      #NoEnv
      SetWorkingDir %A_ScriptDir%
      CoordMode, Mouse, Screen
      #SingleInstance, Force
      
      #If MouseIsOvertop()
      
      $~WheelDown::
      send, !{PGDN}
      return
      
      $~WheelUp::
      send, !{PGUP}
      return
      #If
      
      MouseIsOvertop()
      {  MouseGetPos,,y
         Return y < A_ScreenHeight - 1070
      }
      
      
      1 Reply Last reply Reply Quote 0
      • First post
        Last post
      Copyright © 2014 NodeBB Forums | Contributors