tabnation

intro 3

Feb 24th, 2021
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. f1::
  2. SoundBeep, 750, 500
  3. Return
  4.  
  5. f2::
  6. SoundPlay, Filename
  7. Return
  8.  
  9. BlockInput, On
  10. Send hi
  11. BlockInput, Off
  12.  
  13. f3::
  14. ImageSearch, OutputVarX, OutputVarY, 0, 0, A_ScreenWidth, A_ScreenHeight, C:\Users\Thom\Desktop\Capture.PNG
  15. If OutputVarX =
  16. {
  17. Msgbox, No nothing yet sorry
  18. }
  19. Else
  20. {
  21. Msgbox, I found the picture at %OutputVarX%
  22. }
  23. Return
  24.  
  25. f4::
  26. MouseGetPos, MouseX, MouseY
  27. PixelGetColor, color, %MouseX%, %MouseY%
  28. MsgBox The color at the cursor position is %color%.
  29. If color=
  30. {
  31. MouseMove, MouseX, MouseY
  32. click
  33. }
  34. Return
Advertisement
Add Comment
Please, Sign In to add comment