iNotes Mail-Inbox View Right Click customisation

I can’t find a way to modify the iNotes “right click” menu when you are in the Mail-Inbox view and have a document selected. I thought it would be in AddActionsLite, but couldn’t find anything there. Is there another function call I’m missing, or any other ideas on how to do this?

I reviewed the page: https://www-10.lotus.com/ldd/dominowiki.nsf/dx/The_basics_of_iNotes_customization https://www-10.lotus.com/ldd/dominowiki.nsf/dx/The_basics_of_iNotes_customization and Eric Spencer’s presentation, but unless I missed something I didn’t find anything. Thanks in advance.

Subject: I can add Action Bar items, but they aren’t being added to right click

As a test, I added the following action to the action bar, but it didn’t show up in the right click items. What am I missing to add it as a right click option?

function do_this(sId){
var selected_docs = API_GetSelectedDocs_Lite();
alert("UNIDs of selected docs: " + selected_docs);
}

function Custom_Scene_Actions_Lite(s_MenuID)
{

{title:“Action1”, find_id: “new”, id: “Act1”, before: true,
action:“do_this{ }”, help_text: “Running Action One” }
];
addActionsLite( s_MenuID, bLeftItems, aAdd1 );

}

Additionally, addActionsLite() is giving the action bar menu ID’s using hover, but I can’t get the menu ID’s for the right click menus.

From the information on checkActionIDs helper function,
//…A new item will also be added to the top of all dropdown menus
// which has the dropdown ID as the text.

I’m not getting the menu ID at the top of the dropdown. But hover is working on the action bar.

My main objective is to add an action to the Action Bar, as well as an action to the right click dropdown menu of the mainview documents.

Subject: AddActionsLite, removeActionsLite, etc

If you use AddActionsLite, removeActionsLite, and repositionActionsLite to modify items on the main menu bar, the corresponding items on the right mouse menu will also be updated.