Advertisement
Guest User

mahog table

a guest
Mar 25th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ; This script is used to make Mahogany Tables.
  2. ; Uses q, w & e to make the Mahogany Tables. These keys can be changed to suit your preferences.
  3.  
  4. q:: Click Right
  5. return
  6.  
  7. w:: MouseMove, 0, 54, 0, R
  8. return
  9.  
  10. e:: Click
  11. return
  12.  
  13. `:: ; Pressing ` (~/console key) turns the AHK icon in your system tray to red to let you know that's it's suspended.
  14. Suspend, Permit
  15. if not A_IsSuspended
  16. {
  17. Menu, Tray, Icon, %A_AhkPath%, 5, 1
  18. Suspend, On
  19. }
  20. else
  21. {
  22. Menu, Tray, Icon, %A_AhkPath%, 1, 0
  23. Suspend, Off
  24. }
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement