Как сделать такую менюшку?

elscripts

Участник
Автор темы
55
14
Приветствую, на просторах интернета так и не нашёл такую менюшку, экономит место и в разы удобнее, как такую реализовать в Menu tray?
1653674243967.png
 
Решение
Плохо пользуешься поисковиком. По первой ссылке в гугле по запросу "menu ahk":
AutoHotKey:
; Create the popup menu by adding some items to it.
Menu, Tray, NoStandard ; Delete default menu.
Menu, Tray, Add, Item1, MenuHandler
Menu, Tray, Add, Item2, MenuHandler
Menu, Tray, Add  ; Add a separator line.

; Create another menu destined to become a submenu of the above menu.
Menu, Submenu1, Add, Item1, MenuHandler
Menu, Submenu1, Add, Item2, MenuHandler

; Create a submenu in the first menu (a right-arrow indicator). When the user selects it, the second menu is displayed.
Menu, Tray, Add, My Submenu, :Submenu1
Menu, Tray, Add  ; Add a separator line below the submenu.
Menu, Tray, Add, Item3, MenuHandler  ; Add another menu item beneath the submenu...

darksoor

Известный
679
355
Плохо пользуешься поисковиком. По первой ссылке в гугле по запросу "menu ahk":
AutoHotKey:
; Create the popup menu by adding some items to it.
Menu, Tray, NoStandard ; Delete default menu.
Menu, Tray, Add, Item1, MenuHandler
Menu, Tray, Add, Item2, MenuHandler
Menu, Tray, Add  ; Add a separator line.

; Create another menu destined to become a submenu of the above menu.
Menu, Submenu1, Add, Item1, MenuHandler
Menu, Submenu1, Add, Item2, MenuHandler

; Create a submenu in the first menu (a right-arrow indicator). When the user selects it, the second menu is displayed.
Menu, Tray, Add, My Submenu, :Submenu1
Menu, Tray, Add  ; Add a separator line below the submenu.
Menu, Tray, Add, Item3, MenuHandler  ; Add another menu item beneath the submenu.
return  ; End of script's auto-execute section.

MenuHandler:
MsgBox You selected %A_ThisMenuItem% from the menu %A_ThisMenu%.
return
 
Последнее редактирование:
  • Нравится
Реакции: degrando

elscripts

Участник
Автор темы
55
14
Плохо пользуешься поисковиком. По первой ссылке в гугле по запросу "menu ahk":
AutoHotKey:
; Create the popup menu by adding some items to it.
Menu, Tray, NoStandard ; Delete default menu.
Menu, Tray, Add, Item1, MenuHandler
Menu, Tray, Add, Item2, MenuHandler
Menu, Tray, Add  ; Add a separator line.

; Create another menu destined to become a submenu of the above menu.
Menu, Submenu1, Add, Item1, MenuHandler
Menu, Submenu1, Add, Item2, MenuHandler

; Create a submenu in the first menu (a right-arrow indicator). When the user selects it, the second menu is displayed.
Menu, Tray, Add, My Submenu, :Submenu1
Menu, Tray, Add  ; Add a separator line below the submenu.
Menu, Tray, Add, Item3, MenuHandler  ; Add another menu item beneath the submenu.
return  ; End of script's auto-execute section.

MenuHandler:
MsgBox You selected %A_ThisMenuItem% from the menu %A_ThisMenu%.
return
Спасибо!
 
  • Нравится
Реакции: darksoor