Keyboard Shortcuts?

SamirDSamirD Registered Users Posts: 3,474 Major grins
edited January 18, 2012 in SmugMug Support
I always knew about 'H' for hiding photos and right/left arrows for previous/next picture. But tonight I accidentally discovered some more. And then a quick search on the help system brought me to this very, very valuable page:
http://help.smugmug.com/customer/portal/articles/84540-keyboard-shortcuts

If you're like me and am hyper-fast on the keyboard, this is for you. My shoulder is burning right now from working for the last 14hrs, and these shortcuts are now going to make the next 100 hours a lot easier since I don't have to touch that pesky trackball. :thumb

Hope this helps some other keyboard warriors out there. :lust
Pictures and Videos of the Huntsville Car Scene: www.huntsvillecarscene.com
Want faster uploading? Vote for FTP!

Comments

  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited January 18, 2012
    SamirD wrote: »
    I always knew about 'H' for hiding photos and right/left arrows for previous/next picture. But tonight I accidentally discovered some more. And then a quick search on the help system brought me to this very, very valuable page:
    http://help.smugmug.com/customer/portal/articles/84540-keyboard-shortcuts

    If you're like me and am hyper-fast on the keyboard, this is for you. My shoulder is burning right now from working for the last 14hrs, and these shortcuts are now going to make the next 100 hours a lot easier since I don't have to touch that pesky trackball. thumb.gif

    Hope this helps some other keyboard warriors out there. iloveyou.gif
    Only one major problem I see. They don't take into account the control key. When trying to "select
    all" on the page with cntl-a the lightbox comes up. Very frustrating when trying to see all elements on
    a page like text same color as background and empty divs.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • SamirDSamirD Registered Users Posts: 3,474 Major grins
    edited January 18, 2012
    Allen wrote: »
    Only one major problem I see. They don't take into account the control key. When trying to "select
    all" on the page with cntl-a the lightbox comes up. Very frustrating when trying to see all elements on
    a page like text same color as background and empty divs.
    Hmmm...true, but isn't there something in the browser that allows you to nullify keyboard shortcuts? I know one version of Firefox made 's' as one of the Menu options, so the common vbulletin posting shortcut 'alt-s' ended up dropping down this dialogue box. But if you did 'shift-alt-s', it worked as normal. There might be something like this for the 'ctrl-a' problem you're experiencing. thumb.gif
    Pictures and Videos of the Huntsville Car Scene: www.huntsvillecarscene.com
    Want faster uploading? Vote for FTP!
  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited January 18, 2012
    Not sure if this works anymore. (Edit: looks like it does work)
    // -------------------------------------------------------------------------------------
    // Code to block some of Smugmugs key accelerators from firing when the Ctrl key is pressed
    //        http://www.dgrin.com/showthread.php?p=1159183#post1159183
    // -------------------------------------------------------------------------------------
    
    var oldKeyDownFunc;
    if (typeof(keyDown) == "function")
    {
        oldKeyDownFunc = keyDown;
        keyDown = myKeyDown;
    }
    
    function myKeyDown(e)
    {
        if (!e.ctrlKey)
        {
            return(oldKeyDownFunc(e));
        }
    }
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • SamirDSamirD Registered Users Posts: 3,474 Major grins
    edited January 18, 2012
    Sweet! Problem solved. :)
    Pictures and Videos of the Huntsville Car Scene: www.huntsvillecarscene.com
    Want faster uploading? Vote for FTP!
  • SamirDSamirD Registered Users Posts: 3,474 Major grins
    edited January 18, 2012
    Now, if only the 'h' shortcut worked on the lightbox view. :cry The only time I'm having to switch views now is just to hide photos.
    Pictures and Videos of the Huntsville Car Scene: www.huntsvillecarscene.com
    Want faster uploading? Vote for FTP!
Sign In or Register to comment.