Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@anekos
Created June 22, 2013 16:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anekos/5841441 to your computer and use it in GitHub Desktop.
Save anekos/5841441 to your computer and use it in GitHub Desktop.
ScanSnap ix500 で、スキャンの続きができるようになったら、音を鳴らす AutoIt スクリプト http://www.autoitscript.com/
While True
while ControlCommand("[CLASS:ScanSnap Manager GetImgClass]", "", "[CLASS:Button; INSTANCE:1]", "IsVisible") = 0
Sleep(250)
WEnd
SoundPlay(@WindowsDir & "\media\tada.wav")
; MsgBox(1, "Ready", "Ready")
while ControlCommand("[CLASS:ScanSnap Manager GetImgClass]", "", "[CLASS:Button; INSTANCE:1]", "IsVisible") = 1
Sleep(250)
WEnd
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment