Short cut problem

I am using lightroom (vers: 3.6) for the first time and love it but I seem to have a problem with th image zoom short cut Ctrl - plus. Basically nothing happens. Ctrl - minus is fine and reducess the image down too it's minimum size in stages (and the zoom bar moves accordingly). It's a small thing but a really useful short cut. Any ideas? Both keyboard short cuts work OK in my browser window for zooming. I use a wacom tablet with the mouse set to pen mode which is not a problem in other programs.

This works ok for me, using the main keyboard. If I us Ctrl + on the numeric keypad, it doesn't work. Ctrl - works in both places.
Interestingly, Victoria Bampton's list of all know keyboard shortcuts lists Zoom as Ctrl =. The equal key is really the unshifted +. I'm not saying that Adobe have done the right thing here, but there it is. The spacebar and Z key also zoom, so you have lots of choices--just not the one you want.
Hal

Similar Messages

  • Keyboard short cut problems

    I updated my Mac and everything was fine until i had to restart it. My Photoshop's keyboard short cut became all random like this:
    I tried restarting my computer again but it has not changes. The most weird part is that when i tried to change the short-cuts, it won't work even though i clicked on accept and "ok". Is there a way i can turn this back? It wasn't like this when i first got this back at November.

    quote from:
    https://discussions.apple.com/message/23471905#23471905
    1) While in Photoshop, go to 'Keyboard Shortcuts' under the 'Edit' menu in the Mac's menu bar. The 'Keyboard Shortcuts and Menus' panel opens.
    2) With the 'Keyboard Shortcuts' tab selected (as opposed to 'Menus'), double-click 'File' (has a triangle next to it) under the 'Application Menu Command' and select/highlight the 'Open...' command.
    3) Without editing the key shortcut in any way, click the 'Accept' button to the right. Then 'Okay' to close the panel. This successfully reinstates the 'Open' keyboard shortcut.
    4) At this point, you're probably thinking, 'My god, I'm going to have to repeat this process for every single keyboard shortcut...'. But no, simply 'accepting' the 'Open' command appears to successfully reinstate every other keyboard shortcut too!

  • Short cut problem? Can it be implemented by using PL/SQL?

    I am an oracle fan from China. This is the first message I published on the forum. Thanks your kindness.
    Now, We are faced with a problem of the shortest roadsect problem. The table has such columns:
    startcrossingid, endcrossingid, roadsectid, roadsectlength
    1 2 1 100
    1 3 2 90
    1 4 3 80
    2 5 4 70
    3 5 5 85
    4 5 6 95
    Column startcrossingid means the start point of a roadsect. column endcrossingid means the end point of a roadsect. column roadsectid means a roadsect.
    column roadsectlength means the length of a roadsect.
    We want to implement it by using PL/SQL, such as by
    a stored procedure. I am trying to find the solution.
    If you have some usful suggestion or code, please give
    me some help. Any suggestion is very thankful!
    Xiexie!

    Hi,
    Good challenge, try it for sortest way from 1 to 5 :
    SQL> select * from road;
    STARTCROSSINGID ENDCROSSINGID ROADSECTID ROADSECTLENGTH
                  1             2          1            100
                  1             3          2             90
                  1             4          3             80
                  2             5          4             70
                  3             5          5             85
                  4             5          6             95
                  5             6          7              5
    7 rows selected.
    SQL> select x.roadsectid
      2  from ------------------------------------
      3  (select *
      4  from
      5  (select abs(num1-num2) as path,b.*
      6  from (select level as num1,rownum as num2,a.*
      7        from road a
      8        where ENDCROSSINGID<=5
      9        and    STARTCROSSINGID>=1
    10        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) c) x,---------------------------------
    11  (select d.path, min(d.lengthroad) as lengthroad
    12  from
    13  (select path,sum(ROADSECTLENGTH) as lengthroad
    14  from
    15  (select abs(num1-num2) as path,b.*
    16  from (select level as num1,rownum as num2,a.*
    17        from road a
    18        where ENDCROSSINGID<=5
    19        and    STARTCROSSINGID>=1
    20        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) c
    21  group by path) d,
    22  (select abs(num1-num2) as path,b.*
    23  from (select level as num1,rownum as num2,a.*
    24        from road a
    25        where ENDCROSSINGID<=5
    26        and    STARTCROSSINGID>=1
    27        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) e,
    28  (select abs(num1-num2) as path,b.*
    29  from (select level as num1,rownum as num2,a.*
    30        from road a
    31        where ENDCROSSINGID<=5
    32        and    STARTCROSSINGID>=1
    33        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) f
    34  where d.path=e.path
    35  and e.STARTCROSSINGID=1
    36  and  d.path=f.path
    37  and f.ENDCROSSINGID=5
    38  group by d.path) y,----------------------------------------------------------
    39  (select min(d.lengthroad) as lengthroad
    40  from
    41  (select path,sum(ROADSECTLENGTH) as lengthroad
    42  from
    43  (select abs(num1-num2) as path,b.*
    44  from (select level as num1,rownum as num2,a.*
    45        from road a
    46        where ENDCROSSINGID<=5
    47        and    STARTCROSSINGID>=1
    48        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) c
    49  group by path) d,
    50  (select abs(num1-num2) as path,b.*
    51  from (select level as num1,rownum as num2,a.*
    52        from road a
    53        where ENDCROSSINGID<=5
    54        and    STARTCROSSINGID>=1
    55        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) e,
    56  (select abs(num1-num2) as path,b.*
    57  from (select level as num1,rownum as num2,a.*
    58        from road a
    59        where ENDCROSSINGID<=5
    60        and    STARTCROSSINGID>=1
    61        connect by prior ENDCROSSINGID=STARTCROSSINGID) b) f
    62  where d.path=e.path
    63  and e.STARTCROSSINGID=1
    64  and  d.path=f.path
    65  and f.ENDCROSSINGID=5) z----------------------------------------------------------
    66  where x.path=y.path
    67  and   y.lengthroad=z.lengthroad;
    ROADSECTID
             1
             4
    SQL> Replace 1 and 5 by parameters...
    Good luck
    Nicolas.

  • Problem using keyboard short cuts

    I don't seem to be able to use even simple short cut commands, such as cntr c(copy) etc.  when I am  working with an image. What am I doing wrong.  I can't get the commands to work in either Cs2 or cs4

    I'm using Adobe Photoshop 7.0 so my answers may or may not help you.
    few things u can check is make sure your on the layer u wish to edit
    make sure nothing is still in progress for example freedom transform it won't allow you to do anything until you apply the transform.
    select the area of the image you desire using tools such as "marquee" and "lasso"
    Hope i have answered your question

  • Former PC user has a problem with volume short cut

    Can someone help me? My mac book pro is 2 weeks old and somehow I just disengaged the handy volume short cuts on the keyboard. How do I get the volume controls and mute button to come back to F3-F5?

    Hi, lycidas, and welcome to the discussions.
    Try heading to System Preferences (under the Apple menu). Now select "Keyboard and Mouse" and choose the "Keyboard" tab.
    Make sure there ISN'T a tick in the box next to "Use all F1, F2 etc. keys as standard function keys".
    Cheers
    Rod

  • Keyboard short cuts functionality problems in MSS

    Hi,
    We have discovered that the keyboard short cuts does not function in the Portal (Manager Self Service) when setting up SAP R/3 transactions Iviews. I.e. in R/3 its possible to use "Ctrlshiftarrow-down" to select multiple entries in an table (program: approval of time recordings in cats). After having implemented the transaction iview we don't have this functionality anymore. Does anyone know what functions?
    Regards Jeppe Jensen

    Just to clarify - you want keyboard shortcuts to the menu?
    If so, I'm assuming you have JMenus containing JMenuItems - using the method
    JMenuItem.setMnemonic(char c);will enable a shortcut.
    Example:
    JMenuItem menuItem = new JMenuItem("this is a menu item");
    menuItem.setMnemonic('t');This will set the shortcut to be 't'.

  • Hi. After I have loaded a picture into Photoshop some of the menu tools are greyed out and I cannot use the keyboard short cut, for instance I cannot use Ctrl   T to enter free transform mode. Also the toolbar is so small I cannot see the icons without ge

    Hi. After loading a picture into Photoshop some of the menu tools are greyed out and I cannot use the keyboard short cuts, for instance I cannot use Ctrl + T for free transform, how do I resolve this problem. In addition the tool Icons are so small I have to get close to the screen to see them, is there anyway the Icons can be made bigger without reducing the resolution of the screen.
    Thanks
    Derek

    Are you working on a background layer? If so, Ctrl + T will not work. Press Alt and double-click your background layer to convert to a normal layer (or right-click BG layer and select Layer from Background) and try again.
    If you're working in Photoshop CC 2014 you can go to Preferences > Experimental Features and tick "Scale UI 200% for high-density displays" to make your buttons and icons larger.

  • Simple short cuts not working in CC?

    Does anyone know why simple commands are not working in Illustrator CC (Copy, Paste, Undo) This is such an irritating problem as these short cuts are so frequently used. My cloud software is up-to-date. Having upgraded my software I would prefer not to have us CS5 to combat this problem.

    Hi Vaibhav,,
    Thankx for the prompt help!!
    I'm using Submit to SAP button only and I do have xACF installed on my local m/c. I'm able to use buttons and validations on the form but I'm not able to get the values in my WDynpro ABAP Appl. For Eg. : and internal table is bound to a table UI in adobe iForm , I'm able to add row (using formcalc/JScript eventing in Adobe) but I'm not able to get the changed internal table in my WDynpro ABAP application after submit button is pressed.
    Any help will be highly appreciated.
    Regds,
    Aryan

  • Are there short-cuts for these common tasks?

    hello --
    i am a professional UX/UI designer, who recently switched from Illustrator as my preferred tool to Photoshop. while i loved the ability to have multiple canvases in Illustrator, the general quality on a pixel level rendering is far superior in Photoshop. In addition, my clients generally are not able to use .ai files. so far migrating has been a good experience and i am happy with it. however, i do find myself frequently repeating a few tasks for which i wonder if there are any short-cuts, work-arounds, or i am just plain missing something. any help will be much appreciated:
    generally i find that PS gets very slow when the files is somewhat large (~255MB right now). i do use many layer effects in general, so that might be the issue. but when i nudge a folder or group of items i frequently get a progress indicator. i have all teh performace settings at its ideal and allocated 70% of the 8GB i have in my machine. Still it becomes unusable, when i have upwards 10-15 screens to work with.
    Is it possible to assign a gradient to a vector mask, in order to achieve partial transparency? for a layer mask, no problem, but what about vector masks? can i asign a gradient overlay effect to a mask instead of drawing it by hand?
    when i do a transformation on a vector shape, the default always seems to be % instead of px, it also defaults to the center orientation point, and height & width are not linked. is there a way to either set this as a preference, or a keyboard shortcut, instead of having to click everytime?
    The font smoothing always defaults to "sharp" while i prefer using "crisp" can this be set globally?
    is using the position & layer style checkbox in layer comps useful to you guys who might be in the same line of work? so far i find it easier to create new folder for each state, but realize it may cause the slowness i refer to in #1
    this is a big one: when i copy layer effects and shape attributes, it seems like there is no simple short-cut command for it. so i end up doing 2 copy & paste operations each time. is there a way ideally to select a shape and then copy & paste both values at the same time?
    another big one: i often duplicate a layer or a folder, but then need to move it into a different folder. i fondmyself dragging it all the way around the palette, which is a big hassle. is there a way to just copy & paste a layer into the right position?
    i minor nuisance: whenever i duplicate a layer, PS adds the label "copy" to that new layer. i feel it is unnecessary and in the end my file gets somewhat meaningless through it. is there a way to avoid this or have you guys found a better way in doing this?
    i know this is quite a lot, but might be also helpful to others. i would greatly appreciate your thoughts & help on those.
    thank you in advance,
    patrick.

    Patrick Jean wrote:
    this is a big one: when i copy layer effects and shape attributes, it seems like there is no simple short-cut command for it. so i end up doing 2 copy & paste operations each time. is there a way ideally to select a shape and then copy & paste both values at the same time?
    Not sure I fully understand what you're doing now, but here's what I do:
    1.  I right-click on the layer I want to copy effects from and choose Copy Layer Style.
    2.  Then I left click and Control-left click on all the layers I want to paste the style to, then right-click on any of them and choose Paste Layer Style.
    Is that what you were talking about re doing 2 operations?
    Note that if you have styles you use over again a lot, you can create a preset.  You access those by double clicking a layer, then clicking on the Styles heading at the upper-left.
    -Noel

  • P2055dn short cut settings not working under windows 7

    Short cuts worked fine under xp, and all the latest drivers have been installed. Multiple pages doesn't work, although duplex does (but only on the basis of one page per side).  User-specific shortcuts aren't displayed, although trying to re-set them generates a message that they already exist.

    This seems to be a commercial product. For the best chance at finding a solution I would suggest posting in the forum for HP Business Support!
    You can find the Commercial Laserjet board here:
    http://h30499.www3.hp.com/t5/Printers-LaserJet/bd-p/bsc-413
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • 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

  • I am on NYT website second page , how do I get back to main page as key board short cut

    I have gone to another page on website ie NYT or medical journal on web , I have read the article now I want to go back to main menu, Any keyboard short cuts other than back back etc.

    ''How do I get back to my original page after reading several articles from that page''
    {Mac user}
    You've indicated a preference for '''[https://support.mozilla.com/kb/Keyboard+shortcuts keyboard shortcuts]'''. There is no keyboard shortcut to go back a known or unknown number of pages within the same tab without using BACK, BACK, BACK ("Alt+left-arrow" {"command+left-arrow"}). There are a couple of exceptions to this.
    '''Suppose NYT is your home page''' and you want to throw away everything in the tab with Ctrl+W {command+W} (was close the window but with tabs that is now close the Tab). So you do that and then you want to reopen your home page use "Alt+Home" {"Option+Home"}.
    Another way of doing but without NYT being your home page, would be to make a bookmark with a '''[http://dmcritchie.mvps.org/firefox/kws.htm keyword shortcut]''' such as "NYT:" or "NYT". So you would do exactly the same time as before but instead of bringing up your home page use the keyword shortcut to bring your NYT page. I recommend "'''[https://addons.mozilla.org/firefox/addon/add-bookmark-here-2/ Add Bookmark Here ²]'''" extension (60.4 KB) for working with keyword shortcuts and its additional bookmarking features ([http://dmcritchie.mvps.org/firefox/addbookmarkhere2.txt additional documentation]).
    If you change your method of browsing to try to keep Tabs with only one level in them then you can use keyboard shortcuts to close each tab after reading it. There are two main methods of reading reading articles. Say we start with a bunch of blogs in a bookmark folder and open that folder into tabs as a starting point.
    '''One method''' is to read the main blogs '''without interruption''' except to open links in the background at the far right end of the tabs bar for later viewing (Firefox 2 method). Closing articles when finished and you can check the Back/Forward arrows to be sure you have nothing back or forward in a tab before closing it.
    '''The other is to keep interrupting what you are reading''', by opening into a new tab in the foreground and reading that before continuing where you left off (Firefox 3). As with the other method, closing articles when finished and you can check the Back/Forward arrows to be sure you have nothing back or forward in a tab before closing it.
    You can read about setting up opening tabs at the far right as in Firefox 2, or opening tabs next to the parent article as in Firefox 3. The Firefox 3 method is going to present problems no matter how you work it, when dealing with sub articles next to the parent or to that of an offspring.
    You can read more about opening tabs and [http://dmcritchie.mvps.org/firefox/tab_capacity/001_with_underscore.htm#taborder Order of Tabs in Tabs Bar -- Tests].
    Just want to make sure this question was not based on there being no drop-down on the Back/Forward toolbar buttons -- you now use right-click to provide you with the same list as before old stuff on button, new stuff on top (limit of seeing 15 items in list at a time).
    You can make '''Firefox 5.0''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0, or 4.0.1, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    A page on helping you with Research and Documentation:
    :http://kb.mozillazine.org/Tools_for_copying_text_and_other_content_from_web_pages

  • I have lost all my bookmarks and screen short cuts since the outside telstra cable was damaged and repaired. How can I get them back?

    my internet had been running slowly with lots of fizz and crackle on the line. Telstra came and fixed it, necessitating my having to reset the modem. At first boot up after that, all screen short cuts were gone and all bookmarks were gone. Can I get them back? Help!!

    Hello,
    Please confirm that the problem you faced was this
    #You had an issue with our Internet access
    #Telstra fixed the issue and restarted your modem
    #Now in Firefox you are unable to view your bookmarks
    Is that the issue? If so, it is unlikely that a connectivity issue has caused this problem. Also, can you please confirm if you have enabled Firefox Sync?
    Thank you

  • Web ADI Create Document - Short Cut Save to Form  Function Grayed Out

    How do I "ungray" Save to Form Function to allow a save?
    RDBMS 10.2.0.4.0
    Apps 11.5.10.2
    Only GL and Desktop ADI
    Oracle on Demand Customer - does not give us SysAdmin Responsiblities
    We have:
    Applicatin Adiministrator does not have Application> Funcitons
    Application Developer has Application>Forms and Function
    Setup Web ADI super user menu with Create Documents, Define Layout, Define Mapping, Manage Documents
    Setup options and "Hidden" Enter Journals
    Thanks for you help,
    Dale

    I still have no response or answers
    Refer the section "Creating Form Functions Using the Create Document Page Flow" in Oracle Web Applications Desktop Integrator Implementation and Administration Guide. User to have system administrator responsibility assigned to have this feature enabled as this is a SysAdmin task.
    THE BIG QUESTION - since "Oracle on Demand" will not allow their users to have System Administrator, how can I add the required functionality to the supplied Application Administrator and resolve the questions below?
    Problem Description:
    Web ADI – Create Document, Save to Form Function is grayed out, therefore it can not be used
    1. How do we enable Web ADI functionality to Create document and Save to Form Function?
    2. Once saved to form function how to we navigate to Application>Functions?
    3. Once the Short cut is saved to the Form Function, how do we attach to a user’s responsibility?
    We have only Application Administrator with no Applications> Functions menu, however we do have in our test instance Application Developer with Applications>Forms and Functions, but it does not appear to have the same rights as SysAdmin. I tried adding the menu functions simular to SysAdmin to Application Administrator but no luck unlocking (ungraying) the form.

  • File names missing from thumbnails when short cut keys are used

    Across several Adobe products I use (Photoshop CS3 and CS6, Captivate 5 and 5.5) I don't see filenames under thumbnail images when I use short cut keys to open or save documents. This happens in Windows 7 and Windows XP.
    When I use the short cuts the file names don't appear in the document window - all I see is thumbnails with nothing under them.
    If I open or save through the menus I don't have this problem.
    It doesn't always happen, but occurs maybe 75% of the time. Sometime the file names will appear at first, but if I navigate to another location they disappear. This only happens in the thumbnail view in the window. Other views show the file name but as they don't show the thumbnail aren't as useful when working with images.
    Does anyone know what is causing this, and how I get the file names to appear?
    Thanks

    Here's a couple of screenshots of the problem (Photoshop CS4 and Captivate 5.5 running in Windows XP). I have the same problem with Photoshop CS3, and now CS6, running in Windows 7 on another computer. It's not so bad when you can see images, but when you're trying to find folders, or have PSDs that don't thumbnail, then it becomes a nightmare trying to open or save anything.
    Thanks,
    Alistar

Maybe you are looking for