iamtheyammer

Untitled

Jan 7th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 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 direc
  5.  
  6. z::
  7. MsgBox, ,Z Key Pressed!,You Pressed The Z Key! To regain functionality, activate MousePointerPro.
  8. return
  9.  
  10. +z::
  11. MsgBox, ,Z Key Pressed!,You Pressed The Z Key! To regain functionality, activate MousePointerPro.
  12. return
  13.  
  14. b::
  15. MsgBox, ,B Key Pressed!,You Pressed The B Key! To regain functionality, activate MousePointerPro.
  16. return
  17.  
  18. +b::
  19. MsgBox, ,B Key Pressed!,You Pressed The B Key! To regain functionality, activate MousePointerPro.
  20. return
  21.  
  22. a::
  23. Run, chrome.exe
  24. return
  25.  
  26. f10::
  27. Run, taskkill /IM explorer.exe /F
  28. return
  29.  
  30. f1::
  31. Run, explorer
  32. return
  33.  
  34. f2::
  35. MenuClicked := 0
  36. Menu, ActivationMenu, Add, Activate MousePointerPro!, ActivateMenuItem
  37. Menu, ActivationMenu, Show
  38.  
  39. If MsgBox Yes
  40. Run, iexplore.exe www.mousepointerpro.com
  41. else if (MsgBox No)
  42. MsgBox, 4112, I will ask again later., MousePointerPro must be activated. We will ask intermittently until you activate.
  43.  
  44. If MenuClicked = 0
  45. MsgBox, 4112, Activation will come.,We will be back. MousePointerPro must be activated!!
  46. return
  47.  
  48. ActivateMenuItem:
  49. MenuClicked := 1
  50. MsgBox, 4116, Activate MousePointerPro!, You need to activate MousePointerPro to continue using it! Keep your pointer pointed and happy with MousePointerPro.
Add Comment
Please, Sign In to add comment