Advertisement
tabnation

user difine hot

Aug 20th, 2021
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. f1::
  2. startover:
  3. InputBox, VAR, Hotkey pick, What should it be? (use numbers 0-9)
  4. VAR=%VAR%
  5. If VAR contains 1,2,3,4,5,6,7,8,9,0
  6. {
  7. Hotkey,%VAR%,Buttonup
  8. ;Hotkey,%VAR% up,Buttondown
  9. ;iniwrite could go here
  10. }
  11. Else
  12. {
  13. msgbox, Must use a diffrent hotkey
  14. goto startover
  15. }
  16. Return
  17.  
  18. Buttonup:
  19. msgbox, your code here
  20. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement