KraKaKaa

Example Menu AHK Script ( AutoHotKey Script )

Oct 21st, 2023 (edited)
1,666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Autohotkey 0.37 KB | Source Code | 0 0
  1. ^M:: ; Hotkey to open the menu
  2.  
  3. ; Example SubSubMenu
  4. Menu, SubSubMenu, Add, Run Startpage, StartPage
  5.  
  6. ; Example Submenu
  7. Menu, SubMenu, Add, This is a SubSubMenu, :SubSubMenu
  8.  
  9. ;Example Menu
  10. Menu, ExampleMenu, Add, This is a SubMenu, :SubMenu
  11.  
  12. Menu, ExampleMenu, Show ; Tell the hotkey to show the above script.
  13. return
  14.  
  15. StartPage:
  16.     Run, https://www.startpage.com
  17. return
Advertisement