Short Cut Key for Personalized menu

Hi
I've created an Menu for the zoom function using personalization, Is it possible to setup a short key for the menu created
Example: for the File menu we can use Alt+F similarly is it possible to build the short cut key for the custom menu created using personalization
Please advice
thanks
Regards
Ramesh Kumar S

The Character '&' worked very well as expected...
Thanks a lot
Regards
Ramesh Kumar S

Similar Messages

  • To set the short cut key for the menu when using CommandDesign pattern

    Hi All
    I have a menu File which has two menu items Load and save.
    Here for implementing the actionperformed iam using the command design pattern.
    Now iam not able to set the short cut key for the menu item......
    Please help me..............
    Thanks
    Arch

    The Java Tutorials: [How to Use Menus|http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html]
    db

  • Short cut key for created menu

    Hello All:
        Want to know if it is possbie lt put a short cut key to a addon menu...
        I can't attach it in SBO because when it starts menu has not been generated yet, and it automatically loose it. I can't seem to capture combination keys in main main desktop using keysdown event type. Is there anything that I can use??
    Sincerely Yours

    Hello Bo,
    You may try the form key down event. sample code:
    SHIFT+P: open BP
    CTRLSHIFTQ: open sales quotation
    Public Sub ItemEventHandler(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, _
        ByRef BubbleEvent As Boolean) Handles oApp.ItemEvent
          If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_KEY_DOWN And pVal.Before_Action = True Then
                MsgBox("Modifier: " + CInt(pVal.Modifiers).ToString() + " Char precessed" + pVal.CharPressed.ToString())
                If pVal.Modifiers = SAPbouiCOM.BoModifiersEnum.mt_SHIFT Then
                    'SHIFT+P : Open the Business Partner               
                    If pVal.CharPressed = 80 Then
                        oApp.ActivateMenuItem("2561")
                    End If
                ElseIf pVal.Modifiers = SAPbouiCOM.BoModifiersEnum.mt_CTRL + SAPbouiCOM.BoModifiersEnum.mt_SHIFT Then
                    'CTRL+SHIFT+Q: open sales quotation
                    If pVal.CharPressed = 17 Then
                        oApp.ActivateMenuItem("2049")
                    End If
                End If
            End If
    End Sub
    Regards, Yatsea

  • Is it possible to create a SHORT CUT key for a Workspace in CS 5.5 ?

    Is it possible to create a SHORT CUT key for a Workspace using In Design CS 5.5 ?

    Edit Menu > Keyboard Shortcuts > Product Area: Window Menu > Workspace Load 1st, 2nd, 3rd, etc. Create a new set and assign a shortcut

  • Create custom short cut key for colon

    I have a Macbook Pro 10.8.4 Lion, but when I upgraded from Mountain Lion, my keyboard went a little wacky. I could of spilled something withnot noticing, but honestly I think I would remember. The help support had no ideas to fix the issues despite our attempts.
    So is there a way to create a custom short cut for a key not in a menu? I need to create a short cut key for the colon and semi colon lol.
    Thanks!

    Edit Menu > Keyboard Shortcuts > Product Area: Window Menu > Workspace Load 1st, 2nd, 3rd, etc. Create a new set and assign a shortcut

  • Is there any short cut key for opeaning Properties

    Is there any short cut key for opeaning Properties and can we assign short cut key to defined style

    Hi there
    Hopefully Lilybiri won't mind my offering up an observation here.
    Lilybiri wrote:
    ...If it is CP5: the Properties panel of the selected object is automatically focussed on when you select the object on the stage, could you perhaps explain why you want a shortcut?...
    If this is Captivate 5, keep in mind that the workspace may be configured in a variety of ways. For example, the Properties Panel may be collapsed to icons as shown below:
    Certainly when whatever object gains focus, it's there when I expand the collapsed panel. So my guess is that one possibility is mitpancha is asking if there is a shortcut for expanding a collapsed Properties panel.
    According to the Window menu Shift+Control+D should open it. But that doesn't seem to happen here on my own setup. Not sure why.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • How to set the short cut key for buttons

    Hi
    I dont know how to set the short cut keys for the button...can u pls help me out

    Do you mean a short cut key for buttons at client side (web browser)? If yes, you could do it with JavaScript~~~ ^o^

  • Is there a Short cut Key for adding or removing contacts to or from Groups in Address Book

    I'm just curious if there happens to be a Short-cut for either adding contacts to a Group and/or removing them from Groups as well? Seems extremely inefficient to not have this options available. Any help or suggestions would be greatly appreciated.

    You can look at these extensions:
    *Show Parent Folder: https://addons.mozilla.org/firefox/addon/7372
    *Go Parent Folder: https://addons.mozilla.org/firefox/addon/7377

  • How to attach short cut keys to open a menu in a menubar

    Hi,
    I have three menus say File, Edit, Help in the MenuBar and i want to open these menus when i press short cut key from Key board, say Alt+F for File menu, Alt E for Edit menu and so on. When the file menu is shown i want to select the New menuItem in it by CtrlN.
    When i press Alt key the letter F in File, E in Edit should be underlined.
    So can you please give me some sample code for this.
    Thanks.

    Hi. Here is an example. It works on Windows. I am not sure about other platforms.
       import java.util.AbstractMap.SimpleEntry;
    import java.util.Map.Entry;
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.effect.DropShadow;
    import javafx.scene.effect.Effect;
    import javafx.scene.effect.Glow;
    import javafx.scene.effect.SepiaTone;
    import javafx.scene.image.Image;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.scene.layout.*;
    import javafx.scene.*;
    import javafx.geometry.*;
    import javafx.application.Application;
    import javafx.collections.ObservableList;
    import javafx.geometry.Pos;
    import javafx.scene.*;
    import javafx.scene.control.*;
    import javafx.scene.image.ImageView;
    import javafx.scene.layout.*;
    import javafx.stage.Stage;
    public class MenuSample extends Application {
      public static void main(String[] args) { launch(args); }
      @Override public void start(final Stage stage) {
        // create some menus.
        final Menu fileMenu = new Menu("_File");
        fileMenu.getItems().addAll(
          new MenuItem("_Open"),
          new MenuItem("_Save"),
          new SeparatorMenuItem(),
          new MenuItem("_Exit")
        final Menu playMenu = new Menu("_Play");
        playMenu.getItems().addAll(
          new MenuItem("_Start"),
          new MenuItem("_Stop"),
          new MenuItem("_Pause"),
          new CheckMenuItem("_Rewind")
        final Menu helpMenu = new Menu("_Help");
        helpMenu.getItems().add(
          new MenuItem("About")
        final MenuBar menuBar = new MenuBar();
        menuBar.getMenus().addAll(fileMenu, playMenu, helpMenu);
        final VBox layout = new VBox(10);
        layout.getChildren().addAll(menuBar);   
       // layout.setAlignment(Pos.CENTER);
        layout.setStyle("-fx-background-color: linear-gradient(to bottom, silver, derive(silver, 80%));");
        final Scene scene = new Scene(layout, 400, 525);
        stage.setScene(scene);
        stage.show();
      //  ObservableList<Node> menuNodes = ((HBox) menuBar.lookup("HBox")).getChildren();
       // Control menuNode = (Control) menuNodes.get(menuNodes.size() - 2);
       //  menuNode.setMaxWidth(Double.MAX_VALUE);
       // HBox.setHgrow(menuNode, Priority.ALWAYS);
    }

  • Short cut key definitions and symbols I cannot find on keyboard.

    Short cut key definitions, In the window drop down menu there is a short cut symbol for the EQ and others that I simply don't understand or see on my keyboard. My question is this, how do I make this shortcut work? The symbol in front of the command symbol.

    The option+command+E is represented as the ⌥⌘E symbolism, and by pressing those keys, will show the Equalizer.
    Reference the OS X keyboard shortcut guide for additional symbol information. Apple has placed the ⌘ symbol on the command key for a long time, but does not do this with other symbols for shift, control, option, and caps lock.

  • Cc2014 premiere short cut key not function in Window 7?

    Hello All
    Just got my premiere CC 2014 update recently somehow all the Hotkey or short cut key is not function like "space bar C or V )
    the keyboard works fine "i can type"wonder if anyone have the same problem or know how to solve this problem
    thank you   
    Kelvin
    and I test with other adobe product photoshop bridge works fine, in the premiere interface i go under edit/ keyborad shortcuts on the selection tool razor tools slip tool etc none of them had the shortcut mark on the side
    I try to click and create a shortcut to it but unable to, what is going on I had a few project due very soon. please help

    I'm the only person that needs to save the Titles?
    I do it sometimes when I want to reuse a title in more than one project.
    When you export out the Titles, what happens then?
    Only then does it become a separate file, suitable for importing into other projects.  This is NOT necessary to export your finished video,  it's only necessary if you want to reuse the title in other projects.
    The Titles are photos and scrolling words, that are used together as a memoriam in different projects. So having the Titles as separate files on the HD is pretty much essential.
    That's more than just a title, which in PP usually contains only text.  For something this complex, it might be better to create a base project or template that contains all the elements you want to reuse, and then start new projects with that, renaming to a new project name immediately after opening the template.
    For example, I have an HD Wedding project that contains all my sequences, graphics and titles ready to go in organized bins.  I start by opening that project and do a Save As... using the couple's last name.  That way each new project starts with the elements I need and I don't have to recreate them all the time.

  • Short cut key

    Hello,
             I'm facing a problem in assigning short cut key ( which is not defined in the button property list)  to the command buttons. 
             Please find the attached snapshot of my front panel vi. where in I have placed seven buttons next to each other. 
    My requirement : 
    1.    In run-time i need to move focus from one button to another from right to left as well as left to right using keyboard navigation keys. How can I do it?
    2.    Command should be executed only if the button is pressed twice. i.e once the button is pressed it has to ask for confirmation. Is there a possibility to do it? 
    Thanking you,
    Mr Sushmith
    Thanking you,
    Sushmith
    Solved!
    Go to Solution.
    Attachments:
    button.png ‏3 KB

    Hello,
    Can u please explain me how can I use event structure?? Or is there any other alternative?
    Thank you,
    sushmith
    GerdW wrote:
    Hi sushmith,
    1) Use an event structure to capture navigation keys and to set key focus (by PropertyNode!) accordingly...
    2) Use an event structure to capture the ValueChange event for those buttons. Show an additional dialog to confirm operation...
    GerdW wrote:
    Hi sushmith,
    1) Use an event structure to capture navigation keys and to set key focus (by PropertyNode!) accordingly...
    2) Use an event structure to capture the ValueChange event for those buttons. Show an additional dialog to confirm operation...
    Thanking you,
    Sushmith

  • Short cut key!!!help

    I have a menu like File --> Open, Exit. I want to set the Exit menuitem to have a short cut key like 'ctrl-x'. How can I do that?? I'm using JMenu as the menu bar. Thank you.

    a simple exemple :
    you must add it after you defined your component (jMenu or smthingelse)
    print() is the function that is called
    you can do the same with CTRl+X
    (use with Swing)
    /** Gestion de CTRL+P (print) dans la JFrame */
              _myFrame.registerKeyboardAction(
              new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        try {
                        print();
                        } catch (Exception ee) {
              "Print",
              KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_P,java.awt.Event.CTRL_MASK, false),
              JComponent.WHEN_FOCUSED
    hope it helps

  • Aperture Desk top short cut key - Disable ?

    Hi could some-one tell me how to disable a short cut key.
    I've gone to
    Aperture
    customise
    selected my custom command
    found the preset - with the associated Short cut Key.   I want to keep the Pre-set, but REMOVE the associated short cut key.
    Thanks for your help.
    Tony

    Go to "Aperture➞Commands➞Customize ... " and in the "Command List" section (lower left) select the command with the key binding you wish you remove, and press the "delete" key on your keyboard.  Then click "Save".

  • Is there a short cut key/command to repeat the last action?

    In excel Alt F4 (I think) repeats your last action.  I can't find a similar command or short cut key in numbers.  Can anyone help me?

    Kappy wrote:
    Isn't it supposed to be a clone of Excel within limits?  I don't use iWork.
    Who said/wrote that ?
    Numbers is not a clone of Excel. I doesn't share the Microsoft philosophy which include every asked feature.
    Apple engineers carefully select what may be added and what must remain as dreams/wishes.
    Basically, they apply the good old rule :
    ++-+-+-+-+-+-+-+-++
    Apple Human Interface Guidelines:
    Apply the 80 Percent Solution
    During the design process, if you discover problems with your product design, you might consider applying the 80 percent solution‚ that is, designing your software to meet the needs of at least 80 percent of your users. This type of design typically favors simpler, more elegant approaches to problems.
    If you try to design for the 20 percent of your target audience who are power users, your design may not be usable by the other 80 percent of users. Even though that smaller group of power users is likely to have good ideas for features, the majority of your user base may not think in the same way. Involving a broad range of users in your design process can help you find the 80 percent solution.
    +-+-+-+-+-+-+-+-+
    At this time they offer around 250 functions when Excel have about 500.
    Tables are limited to 256 * 65635 cells
    Numbers is slooooooooooooooooooooooooowwwwwwwwwwwwwww
    Excel offer some database features, Numbers doesn't
    In Excel, macros are back, they never arrived in Numbers.
    Yvan KOENIG (VALLAURIS, France) samedi 30 avril 2011 22:58:32
    Please :
    Search for questions similar to your own before submitting them to the community

Maybe you are looking for

  • Trying install Oracle8i(8.1.7) in RedHat Linux 7.3

    I'm trying to install Oracle 8i on RedHat Linux 7.3., but I don't get start the "runInstaller". The error that I can see is: Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wa

  • Missing footer from my Microsoft Word Template in RoboHelp 9

    I'm using RoboHelp 9.0.2.271.  I have to show two different footers:  one for WebHelp and one for printed docs (with different content).  I do not use footers per topic.  I use a master page for the WebHelp that includes a footer.  I tried using a Mi

  • Tape Compression for Protection Groups Not Working

    Hi everyone, We've since started using DPM 2012 R2 to backup our systems. Everything is working except for tape compression. I've read some other discussions regarding similar issues, but none have been of any help to me. DPM (version 4.2.1254.0) is

  • Remote VPN drop

    Hi, .. There are Multiple Remote access connections comes to my VPN Concentrator. each remote office whos connected to my VPN can just connect with ONE PC only. when he tries to use VPN software to create new connection he success BUT the first drop.

  • MBP freezes when it goes to sleep - started with latest OS Update (I think)

    Beginning on Friday (I believe it was right after I installed the latest OS Update) my MBP has been locking up when I close the lid. I can tell it's locked up because the screen is still light. When I open the lid again, the clock is stopped, there i