Hacker News new | ask | show | jobs
by wruza 589 days ago
Bonus for fellow scraper: AHK script for saving images. Hover over an image in the grid and press alt-shift-s. It will rclick, type i, s, enter etc. I bound it to my mouse side button to save images under cursor without going through menus.

  ; Alt-Shift-s (&image -> &save image)
  !+s::
  Click, right
  Sleep, 350
  Send, i
  Sleep, 100
  Send, s
  WinWaitActive, Save As,, 5
  if ErrorLevel
  {
     SoundBeep, 150, 300
     return
  }
  Sleep, 100
  Send, {Enter}
  return