Advertisement
tabnation

grab all hotkeys from code

Oct 26th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ;==================================================
  2. ;script info #bbb777
  3. ;==================================================
  4.  
  5. scriptinfo:
  6. allkeys=
  7. Loop, parse, codestring, `n
  8. {
  9. if A_LoopField contains ::
  10. allkeys=%allkeys%`n%A_tab%%A_LoopField%
  11. }
  12.  
  13. infotoshow=
  14. (
  15. Lines of code = %total0%
  16. Hotkeys
  17. %allkeys%
  18. )
  19. msgbox % infotoshow
  20. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement