Skip to content

Instantly share code, notes, and snippets.

@okineadev
Created April 7, 2026 16:37
Show Gist options
  • Select an option

  • Save okineadev/9df69a2fa0e484da1720bdec174aba9c to your computer and use it in GitHub Desktop.

Select an option

Save okineadev/9df69a2fa0e484da1720bdec174aba9c to your computer and use it in GitHub Desktop.
🖨️ Hotkey for faster scanning of the next page in IJ Scan Utility using AB Shutter3 remote
#Requires AutoHotkey v2.0
#SingleInstance Force
; Using AB Shutter3 Bluetooth Remote to turn document pages without a keyboard
; Volume+ (Button 1) → Scan
; Volume- (Button 2) → Exit
#HotIf WinActive("Scan Complete ahk_exe SCANUTILITY.exe")
Volume_Up:: ControlClick("Button3", "A") ; Scan
Volume_Down::ControlClick("Button4", "A") ; Exit
#HotIf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment