Application Key (Menu Key) (Right Click Button)

Hi,
I have an HP Pavillon Notebook 13-b200nt model. But the notebook doesn't have "application (menu) key which is used instead of right click of mouse.
Is it possible to change any key function as rihgt click option? Or as far as i know "shift + F10" is a short cut of right click, may i create another short cut?
Thanks in advance,

Hi there @Memo1 
Welcome to the HP Support Forums! It is a great place to find the help you need, both from other users, HP experts and other support personnel.
There are several different keyboard mapping tools available on the internet. A quick google search will find several that you can investigate.
Malygris1
I work on behalf of HP
Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
Click Kudos Thumbs Up on the right to say “Thanks” for helping!

Similar Messages

  • Displaying a context menu on right click on rich tree

    Please see the code below. I want to display a context menu on right click on a rich tree.
    <ui:composition xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich">
        <style>
            .col1{ width:50%; vertical-align:top;
        </style>
        <h:form>   
            <h:panelGrid columns="1" width="100%" columnClasses="col1">
                 <rich:tree style="width:300px" nodeSelectListener="#{simpleTreeBean.processSelection}"
                    switchType="client"
                    value="#{simpleTreeBean.treeNode}" var="item" id="item">
                    <rich:componentControl event="onClick" for="menu" operation="show">
                    <f:param value="#{item.data}" name="send" />
                </rich:componentControl>
                </rich:tree>
                </h:panelGrid>
            <a4j:outputPanel ajaxRendered="true">
                <rich:panel>
                    <f:facet name="header">Last Menu Action</f:facet>
                    <h:outputText escape="false" value="Right Click :  #{simpleTreeBean.nodeTitle}" id="selectedNode" />
                    <br/>
                </rich:panel>      
            </a4j:outputPanel>
                 <rich:contextMenu event="oncontextmenu" actionListener="#{SimpleTreeBean.processCurrElement}" attached="true" id="menu" submitMode="ajax">
                <rich:menuItem ajaxSingle="true">
                <b> #{simpleTreeBean.nodeTitle}</b> Send To
                    <a4j:actionparam name="det" assignTo="#{ddmenu.current}" value=" #{simpleTreeBean.nodeTitle}"/>
                </rich:menuItem>
            </rich:contextMenu>
        </h:form>
    </ui:composition> With this code, i need left click at first then right click, then it will show the selected node. I want to get the value of the node title on right click. Please help me with it. The SimpleTreeBean code:
    package com.dW;
    import java.awt.event.ActionEvent;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Properties;
    import javax.faces.FacesException;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import org.richfaces.component.UITree;
    import org.richfaces.event.NodeSelectedEvent;
    import org.richfaces.model.TreeNode;
    import org.richfaces.model.TreeNodeImpl;
    public class SimpleTreeBean
        private TreeNode rootNode = null;
        private String nodeTitle;
        private static final String DATA_PATH = "images/simpleTreeData.properties";
        private void addNodes(String path, TreeNode node, Properties properties) {
            boolean end = false;
            int counter = 1;
            while (!end) {
                String key = path != null ? path + '.' + counter : String.valueOf(counter);
                String value = properties.getProperty(key);
                if (value != null) {
                    TreeNodeImpl nodeImpl = new TreeNodeImpl();
                    nodeImpl.setData(value);
                    node.addChild(new Integer(counter), nodeImpl);
                    addNodes(key, nodeImpl, properties);
                    counter++;
                } else {
                    end = true; } }  }
        private void loadTree() {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExternalContext externalContext = facesContext.getExternalContext();
            InputStream dataStream = externalContext.getResourceAsStream(DATA_PATH);
            try {
                Properties properties = new Properties();
                properties.load(dataStream);
                rootNode = new TreeNodeImpl();
                addNodes(null, rootNode, properties);
            } catch (IOException e) {
                throw new FacesException(e.getMessage(), e);
            } finally {
                if (dataStream != null) {
                    try {
                        dataStream.close();
                    } catch (IOException e) {
                        externalContext.log(e.getMessage(), e);
        public TreeNode getTreeNode() {
            if (rootNode == null) {
                loadTree();
            return rootNode;
        public void processSelection(NodeSelectedEvent event) {
            UITree tree = (UITree) event.getComponent();
            nodeTitle = (String) tree.getRowData();
        public void processCurrElement(ActionEvent event) {
            UITree tree = (UITree)event.getSource();
            nodeTitle = (String)tree.getRowData();
            System.out.println(nodeTitle);
        public String getNodeTitle() {
            return nodeTitle;
        public void setNodeTitle(String nodeTitle) {
            this.nodeTitle = nodeTitle;
    }

    Hi,
    Do you have a solution for this? Looking for exactly the same.
    As far as I have it at the moment I have the backing object added to the attributes of the node:
    <a4j:support event="oncontextmenu"
                                         oncomplete="#{rich:component('foldersContextMenu')}.doShow(event, {})"
                                         actionListener="#{customerBean.buildContextMenu}" reRender="foldersContextMenu, selectedNode">
                                <f:setPropertyActionListener value="#{item}" target="#{customerBean.nodeTitle}"/>
                                <f:attribute name="node" value="#{item}"/>
                            </a4j:support>This allows me to get the object in the backing bean:
    public void buildContextMenu(ActionEvent event) {
            UIComponent component = event.getComponent();
            log.info("component: " + component.getId());
            Category node = (Category) component.getAttributes().get("node");
            log.debug("node : " + node);But how I translate that to setting this as the current node is causing me problems.
    Thanks
    Jon

  • Pop up menu on right clicking an image?

    Hello,
    I am new to LabWindows/CVI. 
    Requirement: "To get a pop-up menu on right clicking on image"
    Right now, I display my images in window numbers (0 - 15). Is it possible to be able to get a pop-up menu on right clicking an image window. If yes, how? If not, could you please suggest other methods to achieve this task? Should I display the image in a separate parent panel for example? How could I do this?
    Any help would be great.
    Cheers

    I would use the code generator for right click event. then fill it up with whatever code you want under right click case. You can access these when you double click your UIR file, then on the top of the page click Code\Preferences\Default... then choose desired events for picture then go to Code\Generate\all callbacks and skip through the ones you don't want to be replaced.

  • Menu on right-click for numeric control

    Hello,
    is there a way to program a "menu on right-click" for a control (e.g. numeric), like there is for table controls?
    I'm working with CVI 8.0.1 
    Thanks & Best Regards,
    Greg

    Yes, every control can be added a popup menu with a few instructions.
    Design the menu nar in the UIR editor; do not associate it to any panel
    Load the menu bar when needed with the line menuHandle = LoadMenuBar (0, "myfile.uir", menuBar): by passing 0 as the panel handle it will not be associated to any of them
    In the numeric callback add these instructions:
         switch (event) {
            case EVENT_RIGHT_CLICK:
                // Context menu
               choice = RunPopupMenu (menuHandle, menuBar_Menu, panel, eventData1, eventData2, 0, 0, 0, 0);
                switch (choice) {
                     case menuBar_menu_item1:
                              // menu item handling code
                              break;
                break;
    Passing eventData parameters to RunPopupMenu function ensures that the menu is displayed at the mouse position.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • JSF Popup Menu on right click

    Hi ,
    I want to popup menu on right click of any component(say tree).I searched on the net and found the tomahawk <t:popup> component.
    This component popup the menu when mouse pointer enter in to the component but I don't want this behavior.
    I want to popup the menu only when I right click on the component.
    This is sample program
    <t:popup id="a"
    styleClass="popup"
    closePopupOnExitingElement="true"
    closePopupOnExitingPopup="true"
    displayAtDistanceX="10"
    displayAtDistanceY="10" >
    <h:outputText id="oa" value="#{country.name}"/>
    <f:facet name="popup">
    <h:panelGroup>
    <h:panelGrid columns="1" >
    <h:outputText value="#{country.cities}"/>
    </h:panelGrid>
    </h:panelGroup>
    </f:facet>
    </t:popup>
    DO you have any component like this ? Or any other way to do like this ?
    Thanks in Advance,
    KK

    I wrote a component a while back that does something similar to what you want. You'd probably need to fix it up and add any features that you need that it doesn't already have. It pops up a menu on a right-click, it allows you to provide a facet to supply the contents of the menu. I doubt I made sure it works in IE or any browser other than Firefox... so there may be JS issues. It has some other component dependencies you might want to remove also. I could get it to the point where you could try it out and fix it up if you want, but I won't have time until next week.
    Ken Paulsen
    https://jsftemplating.dev.java.net

  • "Toast it" appearing in menu when right clicking

    The words "Toast it" appears in menu when right clicking an icon but Toast has been uninstalled. How can I remove it please?

    Try this previous discussion:
    https://discussions.apple.com/message/12533120#12533120
    Re: "Toast It" wont go from contextual menu

  • Mouse right click button, popup menu, PC frozen

    Hello all,
    It has been while I've been noticing this problem.
    Almost every time I click with the right mouse button on an email from the list of emails or a word inside the content of an email to see which words are suggested by the spell checker, the usual popup menu appear but immediately after
    my PC gets frozen. I need to restart it.
    I don't think TB causes that crash, but something indirectly related.
    How can I debug this? (I'm software developer)
    Thank you so much.
    Roberto

    Update1:
    I put my attention only in the main TB menu.
    I disabled the TB extensions (only Lighting and EnigMail) and tried again to play with the main TB menu.
    With this new TB GUI, you don't see directly the main menu. I usually click the ALT key and the main menu will be displayed. After that I play with it a bit. That means, I clicked on on Tools or File or View etc items and just moved the mouse cursor over the popup menu, without clicking on a specific submenu item. After a while, some seconds, the PC gets frozen and I need to restard the PC.
    I started TB in safe mode also (-safe-mode). In this mode the main menu appears always so I don't need to click on the ALT key.
    I repeat the same steps of moving the mouse cursor of popup main menu items. Up to now, all is normal, without crashing or freezing.
    PC: Win7 (full updated), x64, TB last version.
    Any idea how can I debug this problem?
    Thanks

  • Function Keys and Mouse Right Click Stopped Working On New iMac

    I bought a new iMac a couple of days ago and everything was working fine until last night when I noticed that the volume up/down function keys and also the mouse right click no longer worked.
    For the mouse I tried turning off the right click option and back on again and also tried another mouse which has the same problem.  Both work ok on a MBP which I have.
    I have tried doing the normal SMC and PRAM resets which doesn't solve the problem.
    One program which I installed after I got the computer was Logmein which screwed up my audio settings.  After uninstalling that my audio settings are ok but I was wondering if the program could also have changed some other settings.
    Any ideas would be greatly appreciated.

    Have you checked the System/Keyboard preference pane to see if the Function key option is checked?
    OT

  • After update, XFCE doesn't show the "Applications Menu" on right-click

    I can set it to get a submenu called "Applications," but I can't actually get the Applications menu to exclusively appear on a right-click like I used to.  How do I change this back?

    That's the only way works as i know...
    Perhaps you should tell xfce team what you think,i don't like this new feature as well

  • My right click button brings up menu headed by three words on three lines. Can I change this?

    When I right click on Firefox the context sensitive menu should read:
    Back
    Forward
    Reload...
    Instead I get:
    <bold>Gracious
    Sagacious
    Spacious</bold>
    Back
    Forward
    Reload...
    where does THIS come from? Can I edit this?

    That are spell check corrections that you should only see if needed while typing text in a text area.
    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I used to be able to scroll with the button on my laptop (between left and right-click buttons) and now I can't

    there's a square button on my laptop between the right and left-click buttons which is meant to use to scroll down pages with. it worked before I upgraded, and now id doesn't. how can I change that? my laptop is an Acer from e-machines
    thanks!

    You may have switched on [http://kb.mozillazine.org/accessibility.browsewithcaret caret browsing].
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    * Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    * http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works

  • Inside the browser, right click on the mouse seems to be disabled. How can I enable the right click button? It works fine on toolbars and tab bar but not inside tabs or windows. I would like to be able to copy and paste and such. Thank you

    Right mouse button does not open any menu when clicked inside of tabs or windows. Works properly on the toolbars, in the address line, search bar...etc. but has no action on the page I'm browsing. I purchased a mouse recently and like the old one, the right button works in all other areas of my operating system. I would like to know if there is a setting in firefox that I can change to correct this.

    There are also websites that can disable the right-click context menu.
    See Tools > Options > Content : JavaScript > Advanced > Allow Scripts to:
    [ ] "Disable or replace context menus"
    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r42
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • How to get a pop-up menu on right click of JTree?

    hi
    My application consists of a JTree.I am having a 2 root nodes each one have some child nodes.in the first root node what i want is on right click of child node i have to display one option that is enabled and on the second root node what i want is on right click of child node i have to display one option that is disabled..
    how to do that
    thanks for your reply in advance,

    When you are creating your nodes, do node.setUserObject(objectName);
    and on right click, do something like this
    if (e.isPopupTrigger() == true) {
             selPath = tree.getPathForLocation(e.getX(), e.getY());
          try {
             // If Right Click, Select the Node
             Object[] selectedPath = selPath.getPath();
             DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) selectedPath[selectedPath.length - 1];
             try {
                dataObject = (MyObject) selectedNode.getUserObject(); // Set the Data Object
             } catch (ClassCastException ex) {
                                      ex.printStackTrace();
             // Check for the right click on Framework Node
             if (dataObject.getClass().isInstance(new MyObject()) == true) {
                // Disable the pop-up menu
    ....

  • Applications crash when I right click

    I am going to try to be as explicit as possible in hopes that this can get answered quickly. When I right click in certain programs i.e. Excel, Finder, ITunes, Word, etc... the program crashes. I can right click in some programs including Firefox, and the program menu. I am running 10.4.9. I do not have Stuffit 11 and have only one item in either of my contextual menu folders which is related to Roxio Toast (toastit).
    I have tried the disk utility to fix permissions and I have also tried moving my desktop preferences from the preference folder to the desktop to make sure it wasn't some botched preferences.
    I have a Logitech Mouse, although I don't think it is a mouse problem as I have tried unplugging the mouse, the computer crashes on CTRL + Click as well, even with the track pad. I have tried creating a new account and seeing if the problem persists on that account; it does. The first time I noticed this problem was after my friend plugged his PC formatted IPod into the comptuer through USB port I typically use for the mouse (might not be consequential but...). I am out of ideas. HELP!
    Thanks in advance.
    IBook g4   Mac OS X (10.4.9)  

    The following is the crash log that the machine produced. Good luck.
    Host Name: #############################
    Date/Time: 2007-04-11 08:46:05.524 -0400
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Finder
    Path: /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Parent: WindowServer [86]
    Version: 10.4.7 (10.4.7)
    Build Version: 1
    Project Name: Finder_FE
    Source Version: 5292900
    PID: 196
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x01756cc0
    Thread 0 Crashed:
    0 com.apple.AutomatorCMM 0x01756cc0 CreateAutomatorAppPaths + 2156
    1 com.apple.AutomatorCMM 0x017557e4 AutomatorPluginFactory + 124
    2 com.apple.CoreFoundation 0x907f9190 _CFPFactoryCreateInstance + 196
    3 com.apple.CoreFoundation 0x907f9044 CFPlugInInstanceCreate + 144
    4 com.apple.HIToolbox 0x9336c4d4 TContextualMenuPlugin::LoadCMPluginsFromCFPlugin(FSRef const&, __CFArray*) + 420
    5 com.apple.HIToolbox 0x9336c2cc TContextualMenuPlugin::LoadContextualMenuPlugins(FSRef const&, __CFArray*) + 208
    6 com.apple.HIToolbox 0x9336c160 TContextualMenuPluginList::GetPlugins() + 108
    7 com.apple.HIToolbox 0x9336bf30 ContextualMenuInsertItems(MenuData*, unsigned short, AEDesc const*, ContextualMenuHelp const*, unsigned long*, OpaqueContextualMenuItemsRef**) + 320
    8 com.apple.HIToolbox 0x9336bc50 ContextualMenuSelect + 316
    9 com.apple.finder 0x000b738c 0x1000 + 746380
    10 com.apple.finder 0x000b7770 0x1000 + 747376
    11 com.apple.finder 0x0008253c 0x1000 + 529724
    12 com.apple.finder 0x0000f960 0x1000 + 59744
    13 com.apple.finder 0x00012b28 0x1000 + 72488
    14 com.apple.finder 0x0000ecac 0x1000 + 56492
    15 com.apple.finder 0x0000eba8 0x1000 + 56232
    16 com.apple.HIToolbox 0x93297934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    17 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    18 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    19 com.apple.HIToolbox 0x9332bfd8 HIView::Click(OpaqueEventRef*) + 280
    20 com.apple.HIToolbox 0x9332bea4 HIViewClick + 56
    21 com.apple.HIToolbox 0x9332be50 HandleClickAsHIView + 156
    22 com.apple.HIToolbox 0x9332b7c4 HandleWindowClick + 516
    23 com.apple.HIToolbox 0x9332b254 HandleMouseEvent + 456
    24 com.apple.HIToolbox 0x932da2e4 StandardWindowEventHandler + 148
    25 com.apple.HIToolbox 0x93297934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    26 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    27 com.apple.HIToolbox 0x932d6d5c CallNextEventHandler + 60
    28 com.apple.finder 0x00154b30 0x1000 + 1391408
    29 com.apple.finder 0x00020660 0x1000 + 128608
    30 com.apple.finder 0x0001ffb4 0x1000 + 126900
    31 com.apple.finder 0x0000ecac 0x1000 + 56492
    32 com.apple.finder 0x0000eba8 0x1000 + 56232
    33 com.apple.HIToolbox 0x93297934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    34 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    35 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    36 com.apple.HIToolbox 0x9332a224 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    37 com.apple.HIToolbox 0x9348d3dc HandleMouseEvent(OpaqueEventRef*) + 368
    38 com.apple.HIToolbox 0x9329e1fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    39 com.apple.HIToolbox 0x93297b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    40 com.apple.HIToolbox 0x9329708c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    41 com.apple.HIToolbox 0x9329de90 SendEventToEventTarget + 40
    42 com.apple.HIToolbox 0x932dec04 ToolboxEventDispatcher + 92
    43 com.apple.HIToolbox 0x932deb90 HLTBEventDispatcher + 16
    44 com.apple.HIToolbox 0x932dd148 RunApplicationEventLoop + 148
    45 com.apple.finder 0x00008960 0x1000 + 31072
    46 com.apple.finder 0x00004f18 0x1000 + 16152
    47 com.apple.finder 0x00069ff0 0x1000 + 430064
    48 com.apple.finder 0x00069e98 0x1000 + 429720
    Thread 1:
    0 libSystem.B.dylib 0x9002f20c kevent + 12
    1 com.apple.DesktopServices 0x92af4eb0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc683c PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c548 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003102c pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc6a2c MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92af552c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc683c PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x90055468 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bc6a2c MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x92b21558 TIconRefTask::IconRefTaskProc(void*) + 72
    4 ...ple.CoreServices.CarbonCore 0x90bc683c PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002be88 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000001756cc0 srr1: 0x000000000008d030 vrsave: 0x0000000000000000
    cr: 0x22884444 xer: 0x0000000020000007 lr: 0x00000000017557e4 ctr: 0x0000000001755769
    r0: 0x00000000000000a7 r1: 0x00000000bfffde90 r2: 0x00000000a0001fac r3: 0x0000000000000000
    r4: 0x000000000000002f r5: 0x0000000000000065 r6: 0x0000000000000022 r7: 0x00000000000000e9
    r8: 0x000000000000003e r9: 0x0000000000000066 r10: 0x0000000000000011 r11: 0x00000000a00061ec
    r12: 0x0000000001755769 r13: 0x0000000000000002 r14: 0x0000000000000000 r15: 0x00000000a3297698
    r16: 0x00000000006b6030 r17: 0x00000000006b64f0 r18: 0x0000000000000001 r19: 0x00000000000000bc
    r20: 0x00000000000000b3 r21: 0x0000000000000065 r22: 0x0000000000000030 r23: 0x00000000000000d5
    r24: 0x00000000000000bc r25: 0x00000000000000b3 r26: 0x0000000000000065 r27: 0x0000000000000030
    r28: 0x00000000000000d5 r29: 0x00000000006b71b0 r30: 0x0000000000000000 r31: 0x00000000907f90dc
    Binary Images Description:
    0x1000 - 0x31dfff com.apple.finder 10.4.7 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x5f9000 - 0x5fbfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1754000 - 0x1756fff com.apple.AutomatorCMM 1.0.1 (54) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bdfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90215000 - 0x9021afff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021c000 - 0x90269fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90294000 - 0x90345fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90374000 - 0x9072ffff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bc000 - 0x90895fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore 681.9 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f92000 - 0x90fd3fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x91414fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91427000 - 0x91432fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91437000 - 0x9143ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x945f9000 - 0x9463efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9475d000 - 0x9476cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94774000 - 0x94781fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947c7000 - 0x947e0fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947e7000 - 0x94abcfff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b80000 - 0x94bf1fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94c64000 - 0x94c84fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94f44000 - 0x94f4afff com.apple.filesync 3.1 (99.9.0) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    IBook g4 Mac OS X (10.4.9)

  • Popup menu with right-click

    I am investigating the feasibility of adding "Personalised Menu"
    functionality to a Forms application. The idea is that regardless
    of what form a user is currently in, he/she will be able
    to right click on the canvas to display a list of "favourite screens".
    Next, s/he will pick a screen from this list and hey presto will
    be navigated to it. There will need to be "Do you want to save
    your changes?" processing of course before hopping to the new screen.
    When the user right-clicks s/he should see a customised list of menu options:
    user "Peter" could have e.g. a menu with options "Screen A", "Screen C", "Screen D";
    user "Paul" could have screens E,F,G,J on his list and "Mary" could have
    screens A,B,K,Q,R. There will be companion admin functionality to allow
    users to maintain the options they want on their personalised menus but
    this is easy to code using standard forms functionality.
    To simulate the functionality I have created a little PERSMENU form
    to display the user's personalised list of screens on a standard
    multi-row block.
    This is executed via a CALL_FORM in the PRE-POPUP-MENU trigger.
    Of course if I use a called form to display the menu options then
    I need to check if the calling form has any unsaved changes beforehand.
    Which is a bit clunky.
    Another alternative would be to add a PERSMENU block to each form
    in the application. If the user were to right-click on a form's canvas
    the form would attempt to navigate to PERSMENU and then execute_query.
    But of course WHEN-VALIDATE-ITEM triggers etc could prevent the navigation
    and once again the proposal is a bit clunky.
    I have been reading the "Popup menu with left click on 10g" thread at
    Popup menu with left click on 10g
    and am interested in the javabean provided by "Nalin R". Unfortunately
    I am new to java and don't understand the code. But this looks to be
    tantalisingly close to what I am trying to do albeit with "left-click"
    rather than "right-click".
    Has anyone attempted anything similar? Am I right in thinking that the
    javabean approach offers the best solution and if so is there any
    sample code that would help?

    ( (BasicInternalFrameUI)internalFrame.getUI() ).getNorthPane().addMouseListener( new MouseListener(){
    public void mouseClicked( MouseEvent me ){
    //do what ever you want
    });

Maybe you are looking for