Facebook
From Social Marten, 3 Years ago, written in Autohotkey.
Embed
Download Paste or View Raw
Hits: 115
  1. ; ドラッグ範囲選択終了まで待機
  2. While (1) {
  3.   If (GetKeyState("LButton", "P")) {
  4.     Send, {LButton Down}
  5.     While (1) {
  6.       If (!GetKeyState("LButton", "P")) {
  7.        Send, {LButton Up}
  8.        Goto, PrscEnd
  9.       }
  10.     }
  11.   }
  12. }
  13. PrscEnd:
captcha