0
Community Expert
,
/t5/framemaker-discussions/add-menu-to-context-menu/td-p/10971593
Mar 09, 2020
Mar 09, 2020
Copy link to clipboard
Copied
Dear all,
In a script I try to add a menu item to an existing context menu:
menuLocation = app.GetNamedMenu (!TextContextMenu);
oCmd.cmdDoc = menuLocation.DefineAndAddCommand (1, "ETB_InsertSymbol", "Insert special symbol [ETB]", "");
It is not a problem to do so in the menu.cfg file - but in the script it fails with error message
TextContextMenu is undefined
Note, that the ! has gone here.
It seems that scripts can't add to context menus.
What's Your opinion here?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Enthusiast
,
Mar 09, 2020
Mar 09, 2020
Hi Klaus,
you have to use quotes:
app.GetNamedMenu ("!TextContextMenu");
Enthusiast
,
/t5/framemaker-discussions/add-menu-to-context-menu/m-p/10971677#M65321
Mar 09, 2020
Mar 09, 2020
Copy link to clipboard
Copied
Hi Klaus,
you have to use quotes:
app.GetNamedMenu ("!TextContextMenu");
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
K.Daube
AUTHOR
Community Expert
,
LATEST
/t5/framemaker-discussions/add-menu-to-context-menu/m-p/10971686#M65322
Mar 09, 2020
Mar 09, 2020
Copy link to clipboard
Copied
My goodness - blind eyes...
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

