Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. WinActivate, NoxPlayer ahk_class Qt5QWindowIcon
  6. CoordMode, Mouse, Screen
  7. SetTimer, Check, 20
  8. return
  9.  
  10. Check:
  11. MouseGetPos, xx, yy
  12. PixelGetColor, color, %xx%, %yy%
  13. Tooltip %xx%`, %yy%`, %color%.
  14. return
  15.  
  16. Esc::ExitApp
  17.  
  18. ;No idea who built it, but I got it somewhere
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement