Advertisement
JangoBingoBango

screenshot.ahk

Apr 25th, 2020
886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. global questionNumber      := 1     ; Number of question
  2. global imageNumber         := 0     ; Number of image
  3. MsgBox,  Q:%questionNumber%  i:%imageNumber%    
  4.  
  5. Esc::ExitApp  ; Exit script with Escape key
  6.  
  7. F1::takePic()
  8.  
  9. F2::
  10.     questionNumber += 1
  11.     imageNumber = 0
  12.     return
  13.  
  14. saveScreenshot(folderLocation)
  15. {
  16.     WinActivate, ahk_exe Firefox.exe
  17.     Run, "C:\Program Files\IrfanView\i_view64.exe" /capture=2 /convert=%folderLocation%.png
  18.     return
  19. }
  20.  
  21. takePic()
  22. {
  23.     ifnotexist, %folderLocation%
  24.         FileCreateDir, C:\Downloads\Calc\Q%questionNumber%\
  25.     folderLocation  = C:\Downloads\Calc\Q%questionNumber%\%imageNumber%  ; Location Of The Saved Capture
  26.     saveScreenshot(folderLocation)
  27.     imageNumber += 1
  28.     return
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement