I am trying to add a menu item to the LPEX Popup menu.
I can add a new item to the popup menu in other editors using the SimplePopupMenu example on the web.
However I cannot get the new menu item to show up on a member opened in the LPEX editor.
Below is the plugin.xml file
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            objectClass="org.eclipse.ui.IEditorInput"
            id="simplePopupMenu.contribution1">
         <menu
               label="ShowIFile"
               path="additions"
               id="simplePopupMenu.menu1">
            <separator
                  name="group1">
            </separator>
         </menu>
        <action
               label="SimpleMessageAction"
               class="simplepopupmenu.popup.actions.SimpleMessageAction"
               menubarPath="simplePopupMenu.menu1/group1"
               enablesFor="1"
               id="simplePopupMenu.newAction">
         </action>
      </objectContribution>
   </extension>
   <extension
         point="com.ibm.lpex.preload">
      <preload
            class="simplePopupMenu.preload3">
      </preload>
   </extension>
</plugin>
If anyone has any ideas what I need to do to make this show up in the Lpex Editor I would appreciate it.
Thanks
Ron
As an Amazon Associate we earn from qualifying purchases.
	
 
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.