Open menu shortcut

So, here's the thing. I just switched from PC (never going back). I love my mac, but it's slowing me down a bit. See, I rarely use my mouse. I rely mostly on shortcuts when I'm working. My problems is this:
I can't figure out how to open the "Edit" menu with a shortcut key. On a PC, if you are using Word and want to "Paste Special..." for instance, you can press "Alt+e" to open the edit menu, and then "s" to select "Paste Special..."
There's no shortcut key for Paste Special... in Word (and for several other commands). I've tried multiple ways to add that shortcut in (macros, system preference>keyboard...) I can't find anything that works.
Is there a shortcut key just to open a menu? Is there a way to add a shortcut for a specific command that doesn't have a default one?
Thanks in advance,
Greg

No, Paste Special does not usually have a shortcut. In Excel and Word you must use a menu selection. In all the years I've used the software Paste Special has never had a shortcut.
If you are looking for a shortcut to display a menubar menu, then you are correct that there is no shortcut for that unless one has been provided by the specific application.
If you customize a shortcut then you want to do it for the specific application. However, if the application is already using the shortcut, then yours may not work as the application may override the customized shortcut. This is an application problem rather than an OS X problem.
As a former Windows user, you will need to adapt to the changes between how each OS works. OS X is not identical to Windows. Some features of Windows may not be implemented, while other features may not exist in Windows.
This is not a "larger problem," but just the fact that these are two different operating systems. If you wish you can request new features or file bug reports and complaints here: Feedback. For individual applications such as Office, you should file your requests through their respective support or feedback pages.

Similar Messages

  • After updating firefox I can not open the shortcut browser icon, but can open IE, and my whole system seems to be slow. solution please? Now when I open firefox the task manager says the process firefox is running 100% CPU in the background

    Updated firefox to latest version with custom install, no task bar or startup (in past I think I usually included startup) late Friday nite. Then when trying to open Firefox shortcut on desktop Sat. could not, would freeze up. Then if I tried to open IE same would happen. After rebooting a # of times, opened IE 1st and worked but still could not open Mozilla within IE or the desktop. Also all our 3 wireless laptops including apple have no problem with this.

    You said you tried the recommended solution, but didn't mention what that solution was. Try, from the Firefox menu bar:
    <br /><br />
    Tools -> Options -> Content
    where you will find an option to block pop-up windows. If that box is checked but there are sites from which you would like to allow pop-up, click the button "Exceptions..." to add sites to your exception list.
    See also the help article [[Pop-up blocker]].

  • Firefox desktop and start menu shortcuts were hidden after install - why?

    Hi
    I just installed Firfox 5 and after installing both the desktop shortcut and the start menu shortcut were marked as hidden in windows.
    Anyone else experienced this and have any ideas what could have caused this. It was rather confusing.
    I'm running on a brand new laptop (Dell XPS-17) running Windows 7 Home Premium (64bit). The only candidate I can think of is the computer came with McAffee, which I haven't used in years. It was appallingly bad back then but thought I'd give it a chance as Dell gave me 15months free.
    Thanks
    Mog

    Hi,
    I would like to suggest you try these steps to figure out what could be causing this problem.
    1. Run Troubleshooter
    Open the Search and Indexing troubleshooter
    http://windows.microsoft.com/en-US/windows7/Open-the-Search-and-Indexing-troubleshooter
    2. Create a new library and include fewer folders for test purpose. Now search for a file from that folder. See if it works.
    Create a new library
    http://windows.microsoft.com/en-US/windows7/Create-a-new-library
    3. Try to rebuild search indexing. Refer the steps from the following article.
    http://windows.microsoft.com/en-US/windows7/Change-advanced-indexing-options
    Also you may use the System File Checker tool (SFC.exe) to check the issue. The sfc /scannow command scans all protected system files and replaces incorrect versions with correct Microsoft versions.
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on Windows 7
    http://support.microsoft.com/kb/929833
    In addition, you may refer to the following Microsoft TechNet article for the Windows Search related Group Policies.
    Group Policy for Windows Search
    http://technet.microsoft.com/en-us/library/cc732491(WS.10).aspx
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • Internet explorer unable to open url shortcuts from networked locations

    Hi Everyone
    I have an issue with Internet Explorer not opening up URL shortcuts from networked locations.
    The setup I have is a Windows 2008R2 Terminal Server (patched and up to date), which uses setup for folder re-direction (all folders bar app data) to redirect the data to a network share on the same server (ie, the my documents folder is redirected to \\server\users\username\my
    documents).
    When the user opens internet explorer and tries to open a favorite, the active tab sits there with a connecting... displayed on it, and does nothing else. Opening the URL shortcut directly from the favorites folder does the exact same thing.
    However, when I login as the domain administrator account, and do the same thing, it works as it should.
    There are two ways that I have found to get it working is to not redirect the favorites folder, and disabling the "Enable Protected Mode" for the Internet zone (Internet Options > Security Tab > Select Internet Zone, and uncheck the protected
    mode box).
    I have tried setting the network shares to be located within the local intranet zone, and I do believe that it is setting correctly since I can open an html document in the share and it shows the intranet zone in the status bar.
    Does anyone know of a way of getting the favorites working when they are stored on a network share as a re-directed folder?
    Many thanks,
    Sam.

    Hi,
    Based on my test, "Enable Protected Mode" for the Internet Zone shouldn’t cause this problem. I try to move a test user’s Favorites folder to a shared folder and then try to open the Favorites shortcuts from IE, they work fine.
    Could open \\server\users\username\my documents folder and directly open the shortcuts by double-click them?
    If not, let’s use Process Monitor to trace the process:
    Process Monitor
    http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx   
    Download and run it. Click File menu, check Capture Events, double-click the shortcuts in shared folder, wait for some time, when the error occurs, uncheck Capture Events again. Exported events to Logfile.PML and upload the file to Windows Live SkyDrive
    (http://www.skydrive.live.com/). If you would like other community member to analyze the report, you can paste the link here, if not, you can send the link to
    [email protected] (with this thread title or link in the email. Please don’t share documents with this address).
    Thanks.
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your
    question. This can be beneficial to other community members reading the thread.

  • Menu shortcuts

    Does any one know how to add a menu shortcut to the following code??
    openMenuItem = new JMenuItem("Open File");
    openMenuItem.addActionListener(this);
    fileMenu.add(openMenuItem);

    openMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_O, ActionEvent.CTRL_MASK)); // Control-O
    openMenuItem.setMnemonic(KeyEvent.VK_O); // for use with alt-menu selection... Alt-F, O

  • Won't open homepage on open, won't open web pages from the menu 'open new window', Can't open menu button

    Ok, since update to version 31.0, I have been having some problems.
    I have tried doing everything stated in the support page about resetting, reinstalling, safe mode, restarting pc etc.
    First problem, when I open Firefox no web page loads. It just says New Tab and a blank white page. If I press the home button I am taken to my homepage which is google.
    Second problem, when I right click on a link and the menu pops up, if I click open in new window, a new window opens but it just says New Tab with a blank page and no URL information, just blank.
    Third problem, the Open Menu button just doesn't work at all. You can click all you like, that thing is not opening.
    I am really stuck as to what to do. I have only been using Firefox for about a month and t was good until these problems. If I can't resolve it, I will have to use another browser as it is really annoying.
    I am using Windows 8.1 by the way and have scanned my computer thouroughly for both virus's and malware.

    Hi zenithtwc, to test whether this is a settings issue, could you do a three-minute experiment?
    '''Create a new Firefox profile'''
    A new profile will have your system-installed plugins (e.g., Flash) and extensions (e.g., security suite toolbars), but no themes, other extensions, or other customizations. It also should have completely fresh settings databases and a fresh cache folder.
    Exit Firefox and start up in the Profile Manager using Start > search box (or Run):
    firefox.exe -P
    ''Don't delete anything here.'' Any time you want to switch profiles, exit Firefox and return to this dialog.
    Click the Create Profile button, assign a name like Test731, and skip the option to change the folder location. Then start Firefox in the new profile you created.
    Can it reach the internet?
    When returning to the Profile Manager, you might be tempted to use the Delete Profile button. But... it's a bit too easy to accidentally delete your "real" profile, so I recommend resisting the temptation. If you do want to clean up later, I suggest making a backup of all your profiles first in case something were to go wrong.

  • Internet Shortcuts saved on Desktop open new instance of Firefox 3.6 using clean profile--how can I make it open all shortcuts using current profile?

    I rely heavily on Firefox's profiling ability to assist me in my web design projects. Lately, using Firefox 3.6, I have run into some problems with how it opens Internet Shortcuts that are saved locally (i.e.- shortcuts that reside on my Desktop). When I double-click on one of these shortcuts, a new instance of Firefox 3.6 is loaded with the saved website from the shortcut, but it's also initialized a fresh profile (i.e.- my bookmarks are gone, no add-ons, etc.--it's as if it uses some sort of "hidden" clean slate to load the shortcuts).
    Is there any way to force Firefox to load all shortcuts into whatever profile I'm currently using at that given moment? I think the reason this has happened to begin with is because of the fact that I did some stuff to Internet Explorer awhile back that caused some problems with the Internet Shortcut associations and it all led to this eventuality.
    I'm running Windows XP Pro and have the following profiles with my Firefox versions:
    "C:\Program Files\Mozilla Firefox 3.6\firefox.exe" -no-remote -p Firefox3.6
    "C:\Program Files\Mozilla Firefox N\firefox.exe" -no-remote -p FirefoxN
    "C:\Program Files\Mozilla Firefox 3\firefox.exe" -no-remote -p Firefox3
    "C:\Program Files\Mozilla Firefox 2\firefox.exe" --no-remote -p Firefox2
    When I go into the "Folder Options / File Types" and double-click on "Internet Shortcut", I have the following within the "Advanced" settings (for the "open" action):
    Action: open
    Application used to perform action: rundll32.exe shdocvw.dll,OpenURL %l
    "Use DDE" is checked...
    "DDE Message" is blank...
    "Application" is "shdocvw"...
    "DDE Application Not Running" is blank...
    "Topic" is "System"
    Again, I think the root problem here is to do with the profiles and how they're handled when being opened with Firefox but I can't discern how to apply a fix with all this as I've obviously goobered this up a bit. I would really appreciate some professional knowledge on this and would prefer to avoid any reinstalls of anything if possible.

    To save your sanity with this issue, my advice is to find a method other than desktop shortcuts to open those URL's.
    1. Desktop shortcuts are going to open the Default Browser.
    a. With multiple versions of Firefox installed that would be the last version that was installed when you have Firefox set as the Default Browser in Windows..
    b. The Default Browser is going to use the Profile that shows a Default=1 in the profiles.ini file.
    c. The Default Browser with the Default Profile isn't going to open if you have any other versions of Firefox already running, and the -no-remote command line parameter doesn't work in this situation.
    2. The use of multiple Profiles and multiple versions isn't officially supported by Mozilla, and all the Bug reports that I have ever read about Requests for Enhancement have been WONTFIX'd by the developers. Basically we have to work with the limitations in Firefox and maybe improvise work arounds by ourselves. I've even seen a few threats about removing Profiles altogether in RFE Bug reports about Profiles.
    I have had so many problems over the years with this Default Browser / Default Profile thing over the years that personally I find it easier to just set Opera as the Default Browser in Windows rather than have a Profile get b0rked because some other program I am using decides it wants to open the Default Browser unexpectedly. I don't use Opera for much, but it is a lot better than IE for purposes of being the Default Browser, considering the quirks I have seen with Firefox and multiple Profiles.
    I have written a number of postings over at the MozillaZine Builds forum over the years about installing multiple versions of Firefox and using multiple Profiles. There's a lot of tips and comments provided by other multiple Profile users in one of those threads. Why don't you read those threads and see if it gives you some ideas or solutions I haven't thought of.
    http://forums.mozillazine.org/viewtopic.php?f=23&t=1062975
    http://forums.mozillazine.org/viewtopic.php?t=613873
    http://forums.mozillazine.org/viewtopic.php?t=462431
    The last thread listed has a lot of comments offered by other users, the first two threads were locked as a How-to sticky thread.

  • How download cs5 Camera raw update and how make Photoshop the default in the Bridge "open" menu?

    Two problems  which have defeated me.
    First, I have a new Canon  EOS 500D  and need to download the  recent  (July  2010) CS5 Camera Raw update. However both of my computers freeze when I move from the Adobe Support web page to the Download web page.  Is this a known problem? What to do about it? I am using CS 5 on a Windows 2007 XP computer.
    Second, (probably related to the first)   opening a file in Photoshop is not listed among  Bridge's  "OPEN AS" options. Also,  the "OPEN"  Default is "PAINT". How do I set Photoshop as the "OPEN"  menu  default?
    Thanks for your suggestions. I am truly befuddled by these  issues.
    JackIsaac

    Sounds like something is really wrong with your computer, and it isn't clear what, but if you're just having issues getting to the download link for ACR:
    Here is the download page for ACR 6.1 update:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4728
    Here is the download page for the CS5 12.0.1 update:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4733
    If those links don't work, you can probably find the same updates on the FTP site, although some things here are more than a decade old:
    ftp://ftp.adobe.com/pub/adobe/photoshop/
    See if Bridge and ACR are any happier after installing these two updates.  Make sure you run them as Administrator.
    If those still don't work for you, try another browser, where Internet Explorer, Firefox, and Google Chrome should all work.
    http://www.microsoft.com/ie
    http://www.firefox.com/
    http://www.google.com/chrome
    There are numerous other browsers, as well, but they probably won't work if the above three don't.
    Perhaps you either have a virus that you should scan for, or over-zealous internet-protection software that you could try disabling temporarily.
    My favorite free virus/malware scanner is from www.MalwareBytes.com
    The payfor version will automatically update itself and scan, but the free version works just as well except you have to manually update and scan.

  • Open menu button not working from FF 31 on windows 8.1 x64

    hi,
    FF doesn't seem to be compatible with windows 8.(1) x64, from 31 on.
    i installed v31, 32, 33 and 34 and none of those had a working "open menu".
    i search allover the net, and did not find a solution.
    i deleted all that i could 10 times to no avail.
    i am using version 30 and the button works
    i am very sorry not being able to use the latest FF version, i think its the best project and the only privacy respecting option in the browser world.
    thanks

    It's a bug fixed in FF33+.
    Simple workaround: https://bugzilla.mozilla.org/show_bug.cgi?id=1065998#c33

  • Bookmark bar disappears on startup with open menu button doing nothing

    I upgraded my firefox to v.35
    then on every start-up, bookmark bar shows bo bookmarks.If i uncheck and re-check the bookmark toolbar option on view>Toolbar;
    then all the bookmarks appear,but there's no icon.(For example: Facebook's bookmark doesn't the facebook logo)
    Also if i click the open menu button(above bookmark bar,on the right), it does nothing. the menu doesn't appear.
    Moreover, i can't use my session manager extension. When i click options to restore last session, it does nothing.
    I tried uninstalling, re-installing and downgrading to v.33 and v.32
    Now i need professional help.What can i do?

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • How to open menu again if I had close it? p.s. sorry for my English

    Day ago my brother had close menu in the Mozilla ,so now I can't change nything in my mozilla. Please tell me how can I open menu again. p.s. sorry for my English.

    See [[menu bar is missing]].

  • How to delete "Open Menu" tool.

    Just upgraded to the latest version. An 'Open Menu' tool appeared at the end of the tool bar that I can not get rid of. Also, the bookmark tool is now two icons instead of one. Would like to return to just one icon.

    That is the new interface codenamed Australis to make Firefox easier to use (the menu with the quick bookmark button, and the new hotdog button). We are sorry that you don't like the new changes.
    Here are a few suggestions for restoring the old design. We hope you’ll find one that works for you:
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ Classic Theme Restorer] to bring back the old design. Learn more here: [[How to make the new Firefox look like the old Firefox]]
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/the-addon-bar/ Add-on Bar Restored] to bring back the add-on bar. Learn more here: [[What happened to the Add-on Bar?]]
    Firefox is a work in progress and your feedback is very important to us. Our support community is run by volunteers who work hard to help all Firefox users, but we can’t make changes to the design ourselves. Please help us improve Firefox by leaving feedback where the designers and engineers can see it: https://input.mozilla.org/en-US/feedback.

  • [cs, cs2, cs3] menu shortcuts howto?

    hi,
    is it possible to add a menu shortcut to a custom plugin menu entry (actioncomponent)? if not, is there a possibility to let the user set a shortcut to an entry?
    best regards

    You can set a shortcut from InDesign menu Edit->Menu shortcuts. This however doesn't work if you are using dynamic menus in your plugins.
    P.

  • Command-Z keyboard menu shortcut is not working

    Hi
    Command-Z keyboard menu shortcut is not working in my profile i.e.,my login. But able to execute the same keyboard shortcut in other profile. ALl the other menu keyboard shortcuts are working fine. Have tried deleting Universal Access, HotKeys,Finder Preference plist,. from ~/Library/Preference/ folder. But of no use. This shortcut is not working for any of the app.
    Thnks

    ok will try that and will let you know.. But the undo keyboard shortcut works well in other user profile.

  • I can't remove Yandex Elements from the Open menu list with right mouse button and Tools menu although I removed Yandex. I think it slows down Firefox.

    I downloaded Freeyoutube downloader from internet and somehow got yandex installed in my computer with toolbars on firefox.Despite I removed Yandex from my computer Yandex elements still stays in open menu when right mouse button clicked and in the Tools menu. I tried to uninstall Firefox, remove yandex registry from windows registry and restart computer, and then reinstall firefox, Yandex elements still hangs there. Firefox is now running very slow compared to the running before Yandex.

    hello, please try all these steps:
    # [[Reset Firefox – easily fix most problems|reset firefox]] (this will keep your bookmarks and passwords)
    # afterwards go to the firefox menu [[Image:New Fx Menu]] > addons > extensions and in case there are still extensions listed there, disable them.
    # finally run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] and [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] to make sure that adware isn't present in other places of your system as well.
    [[Troubleshoot Firefox issues caused by malware]]

Maybe you are looking for

  • Error Page -AP: Suppliers Entry

    Hi, R12.1.1 on Win2k3. Supplier creation getting error page. AP: Suppliers > Entry Appear a web page with error message. Error Page – You have encountered an unexpected error, contact Admin-.. Same error page getting in Define Bank: AP: Setup > Payme

  • Can't see my Iphoto Library

    Just updated Iphoto. Now I can not see my Iphoto Library.

  • Z97 mpower max ac - BIOS A bricked?

    I just used M-flash to update my bios to the latest version, it went fine then rebooted to a black screen. Using alternative bios at the moment, is there a method that I can recover A with? Currently A just boots to a blank screen.. Bios B is running

  • Write permission error message when I try to 'save image' from elements 12 raw camera to main editing section?

    I get a 'write permission error' message when I try to 'save image' from Raw Camera sector to the main editing section of Elements 12. How can I overcome this problem?

  • Itunes crashes on ATV 3 but not 2?

    Just wanted to take a moment and share my experiences regarding this itunes bug that is sweeping "Appleland." I have an 2011 iMac that I have been running ATV 2 off of since last October and have not had any problems until recent itunes update 10.6.