Replies: 1 comment 7 replies
-
|
at first glance the logic is not correct: |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How can I move menu items that are not in the menus_id and whose names do not contain menus_name to more_options ? Just like the code I wrote, but it's completely useless
$menus_id = this.id(
id.new,
id.refresh,
id.undo,
id.redo,
id.delete,
id.properties,
id.open,
id.open_with,
id.run_as_administrator
)
$menus_name = ["zip", "Word", "Excel"]
modify(mode=mode.multiple where=(!menus_id || !str.contains(this.name, menus_name)) menu=title.more_options)
Beta Was this translation helpful? Give feedback.
All reactions