Skip to main content
1-Visitor
May 8, 2014
Solved

How to use the ACL command menu_delete when menu name has more than one word?

  • May 8, 2014
  • 1 reply
  • 1510 views

Hi all,

The ACL menu_delete command works well when the menu name's just one word, like "Find". But when it has more than one word ("Find Expressions, for example"), it doesn't work.

I've tried these:

menu_delete .Edit."Find Expressions"

menu_delete .Edit."Find &Expressions"

menu_delete .Edit. "Find &Expressions"

menu_delete .Edit. "FindExpressions"

Best answer by BrianJ

Try

menu_delete .Edit.Find_Expressions

The underscore character is used for spaces and underscores in menu path matching. Details can be seen by searching for "Special characters in menu paths" in Help.

1 reply

BrianJ1-VisitorAnswer
1-Visitor
May 8, 2014

Try

menu_delete .Edit.Find_Expressions

The underscore character is used for spaces and underscores in menu path matching. Details can be seen by searching for "Special characters in menu paths" in Help.

rboneti1-VisitorAuthor
1-Visitor
May 8, 2014

That's it!

Thank You!