-
-
Notifications
You must be signed in to change notification settings - Fork 242
-
Here I am with another problem I haven't been able to solve on my own. Please bear with me.
A while back I built a menu to group the "Add to" items together.
I would like to be able to move this menu inside the "More options" one, see the picture.
Could you help me please?
2025年08月30日 13 26 56
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 3 comments 3 replies
-
It cannot be moved, but it can be rebuilt as you showed:
- System commands/menus can be moved, but commands/menus created with NS can be "locked in place" when created, after which they cannot be moved.
- Create "Add to" in "More options"
menu(mode="multiple" title=title.more_options image=icon.more_options) { menu(title='Aggiungi a' image=\uE001) { } }
or
menu(mode="multiple" title=title.more_options image=icon.more_options) { } menu(mode="multiple" title='Aggiungi a' image=\uE001 menu=title.more_options)
- move the items in sub menu 2nd level
modify(find='Aggiungi' menu=title.more_options+'/Aggiungi a')
or
modify(find='Aggiungi' menu='@title.more_options/Aggiungi a')
Beta Was this translation helpful? Give feedback.
All reactions
-
Please, be patient. You know I'm a little clumsy. I don't know where to intervene since there is no MoreOption.nss file.
I had made this menu:
menu(title='Aggiungi a' image=\uE0C9)
{
modify(find='Aggiungi ad Accesso rapido' menu='Aggiungi a')
modify(find='Aggiungi al menu Start (Open-Shell)' menu='Aggiungi a')
modify(find='Aggiungi a Start' menu='Aggiungi a')
modify(find='Aggiungi alla barra delle applicazioni' image=\uE17B menu='Aggiungi a')
}
I called it "aggiungi.nss" and imported, and it works fine.
Now where can I transfer its content so I can see the menu inside other options?
Beta Was this translation helpful? Give feedback.
All reactions
-
edit it like this:
menu(title='Aggiungi a' image=\uE0C9 mode='multiple' menu=title.more_options) { modify(menu=title.more_options+'/Aggiungi a' find='Aggiungi ad Accesso rapido') modify(menu=title.more_options+'/Aggiungi a' find='Aggiungi al menu Start (Open-Shell)') modify(menu=title.more_options+'/Aggiungi a' find='Aggiungi a Start') modify(menu=title.more_options+'/Aggiungi a' find='Aggiungi alla barra delle applicazioni' image=\uE17B) }
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks a lot. It works :-)
PS Had you have a look to "Donation" post in Q&A section?
Beta Was this translation helpful? Give feedback.
All reactions
-
yes, but only moudey can confirm it
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks for your answer. I don't know who moudey is. Anyway I would just ask you to let me know if my little donation has arrived where I wanted it to.
Thanks a lot in advance
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1