Skip to main content
13-Aquamarine
June 23, 2015
Solved

How to modify the context menu in Arbortext Editor

  • June 23, 2015
  • 1 reply
  • 1190 views

Hi,

With ACL language, how to modify the context menu in Arbortext Editor (right click with the mouse)?

Best answer by ClayHelberg

Hi David--

You can use the menu_add command to do this. The menu to modify is ":EditPopup". For example, to add a "Ping" menu item to the context menu, you would use something like this:

menu_add :EditPopup. "Ping" -cmd { response("PING!"); }

--Clay

1 reply

18-Opal
June 23, 2015

Hi David--

You can use the menu_add command to do this. The menu to modify is ":EditPopup". For example, to add a "Ping" menu item to the context menu, you would use something like this:

menu_add :EditPopup. "Ping" -cmd { response("PING!"); }

--Clay

dgopois13-AquamarineAuthor
13-Aquamarine
June 23, 2015

Hi Clay

Thanks for your help.