Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi,
With ACL language, how to modify the context menu in Arbortext Editor (right click with the mouse)?
Solved! Go to Solution.
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
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
Hi Clay
Thanks for your help.
