cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X

How to modify the context menu in Arbortext Editor

dgopois
12-Amethyst

How to modify the context menu in Arbortext Editor

Hi,

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

1 ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

2 REPLIES 2

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.

Top Tags