Cannot use Mouse Scroll to Navigate Through Library Folders ?!?!?!

Just like the title says, I cannot use my mouse scroll to navigate up and down the numerous folders I have in my library.  I can grab the page bar and move up and down (and while I'm hovering over the page bar, I can scroll up and down with the mouse wheel) - but only when I'm actually over the folders, the mouse wheel doesn't work!
Very strange. It works fine when I'm in develop mode and I can scroll through all the presets and history.
But when I'm in library mode, the mouse scroll doesn't move my folders up and down ?
Anyone?

IIRC, there is a known problem scrolling with the mouse wheel in the panels across certain "borders", i.e. into the folders section, into the collections section. You have to use the scroll bar to get across those "borders".
See here:
http://feedback.photoshop.com/photoshop_family/topics/lr_scrolling_over_folders_in_library _module_doesnt_work?from_gsfn=true
Beat
Message was edited by: b_gossweiler: added link

Similar Messages

  • Problem with back button when using task flow to navigate through pages

    I am using unbounded task flow to navigate through my pages
    in page2 I added back button so I can back to page1 using the action A2
    task flow 1
    page 1 -----A1-------> page 2
    page2 ----A2--------> page1
    the problem when I used page2 in another task flow
    task flow 2
    page 3 -----A3------> page2
    page 2 -----A4 -----> page3
    here when I click on back button he take me to page1
    how can I back to page3 ???????

    For this you have to know where the user came from when he navigated to page2. You can e.g. store the back target in a variable in the session or pageflow scope (when the user navigates from page1 or page3 to page2), then you bind the back button of page 2 to the stored variable.
    Timo

  • Use mouse scroll wheel to change numeric control

    Does anyone know if and how I can use the mouse scroll wheel to change numeric control values?

    Another option would be to change the timeout.  This would avoid the timeout event every ms when the mouse has not "entered" the contol.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Mouse Scroll.vi ‏14 KB

  • Using Mouse Scroll Button In Swing

    Hi all, here's my question:
    When using a JScrollPane, how is it possible to use the mouse scroll button found in the middle of the mouse to scroll up or down?

    Hi,
    if you are using JDK1.4 it should work. If not you would need a native implementation to catch the wheel.
    Regards
    Andre

  • I cannot use the scroll, cannot change tabs, autocomplete for the URLs does not work

    cannot use scroll, cannot change tabs, cannot use autocomplete in the URL tab. this was working
    == This happened ==
    A few times a week

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Adobe Muse - Smooth Scrolling to Anchors Using Mouse Scroll

    I am wondering if there is a way to set up smooth scrolling to anchors with the mouse scroll in adobe muse. I can do it using links, but it would be great if the user could just start scrolling and it smoothly jumps to the next section. This looks great and would solve the issues created by variant mouse wheel speeds. Any help would be great, thanks!
    Here is an example: Layers

    There is a widget that does this quite well.  I posted it earlier, but it mist have had a mistake... or someone deleted it?  Oh well, if it disappears I wont repost it haha.
    https://creative.adobe.com/addons/products/3144#.VCCyYvldWOY

  • Using Mouse Scroll Button In JScrollPane

    Hi all.
    Is it possible to use the mouse scroll button to scroll up or down in a JScrollPane, and if so, how?

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class test extends JFrame implements MouseWheelListener {
      BoxListener boxListener = new BoxListener();
      JComboBox comboBox;
      JScrollPane scrollPane;
      JLabel[] labels = new JLabel[3];
      int scrollUnitIncrement = 3;
      public test() {
        String[] comboItems = {
          "3", "5", "10", "15"
        comboBox = new JComboBox(comboItems);
        comboBox.addItemListener(boxListener);
        JPanel comboBoxPanel = new JPanel();
        comboBoxPanel.add(new JLabel("scroll unit increment"));
        comboBoxPanel.add(comboBox);
        JPanel panel = new JPanel();
        panel.setPreferredSize(new Dimension(350,300));
        panel.setBackground(Color.yellow);
        panel.setLayout(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.weightx = 1.0;
        gbc.fill = gbc.HORIZONTAL;
        gbc.gridwidth = gbc.REMAINDER;
        for(int j = 0; j < labels.length; j++) {
          labels[j] = new JLabel(" ", SwingConstants.CENTER);
          labels[j].setOpaque(true);
          labels[j].setBackground(Color.green);
          panel.add(labels[j], gbc);
        scrollPane = new JScrollPane(panel);
        scrollPane.addMouseWheelListener(this);
        getContentPane().add(comboBoxPanel, BorderLayout.NORTH);
        getContentPane().add(scrollPane, BorderLayout.CENTER);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,200);
        setVisible(true);
      public void mouseWheelMoved(MouseWheelEvent e) {
        int scrollAmount;
        if(e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL)
          scrollAmount =
              e.getUnitsToScroll() * scrollUnitIncrement;
        else
          scrollAmount = e.getScrollAmount();
        labels[0].setText("Wheel rotation = " + e.getWheelRotation());
        labels[1].setText("Units to scroll = " + e.getUnitsToScroll());
        labels[2].setText("Scroll amount = " + scrollAmount);
      class BoxListener implements ItemListener {
        public void itemStateChanged(ItemEvent e) {
          String item = (String)e.getItem();
          scrollUnitIncrement = Integer.parseInt(item);
          JScrollBar verticalBar = scrollPane.getVerticalScrollBar();
          verticalBar.setUnitIncrement(scrollUnitIncrement);
      public static void main(String[] args) {
        new test();
    }

  • Using mouse scroll wheel

    Hi,
    I've set up some buttons on my site to act as a scroll bar (here) and perform as follows...
    on(press) {
         this.onEnterFrame = function() {
              if(content._y < 95.2) {
                   content._y = content._y + 10;
    is it possible to use the scroll wheel of my mouse to do the same thing?
    I'm using Flash MX, so can only publish up to Flash player 6.
    Thanks

    Kglad
    I just coppied the syntax from above for my reply.  My actual syntax has -138.6 rather than 200.
    I've put the syntax into my action script layer on the root level.  When I trace the content._y value, it gives me it's initial position, but when I scroll it doesn't appear to do anything.
    I've not had access to a windows machine to edit my flash for a while, hence me taking so long to reply.
    I've attached what I've done.
    Thanks

  • [Fixed?] Cannot use mouse and touchpad at the same time after upgrade

    Dell Inspiron 6400 laptop, Synaptics touchpad, external wireless USB mouse (Logitech).
    Yesterday I did a full system upgrade which among other packages upgraded
    [2007-11-08 00:06] upgraded synaptics (0.14.6-2 -> 0.14.6.99-1)
    [2007-11-08 00:06] upgraded tzdata (2007h-1 -> 2007i-1)
    [2007-11-08 00:06] upgraded xf86-input-keyboard (1.1.1-1 -> 1.2.2-2)
    [2007-11-08 00:06] upgraded xf86-input-mouse (1.2.1-1 -> 1.2.3-1)
    [2007-11-08 00:06] upgraded xf86-video-i810 (1.7.4-2 -> 1.7.4-6)
    [2007-11-08 00:06] upgraded xf86-video-vesa (1.3.0-1 -> 1.3.0-5)
    [2007-11-08 00:06] upgraded xorg-server (1.2.0-5 -> 1.4-4)
    Before the upgrade, I was able to use both the touchpad and the mouse at the same time, using the following xorg.conf settings:
    Section "ServerLayout"
    InputDevice "Touchpad" "CorePointer"
    InputDevice "USB Mouse" "AlwaysCore"
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    EndSection
    After the upgrade, the touchpad was still working with these settings but the mouse wasn't.  I then changed the xorg.conf settings as follows:
    Section "ServerLayout"
    InputDevice "USB Mouse" "CorePointer"
    InputDevice "Touchpad" "AlwaysCore"
    with the InputDevice sections remaining the same for USB Mouse and Touchpad.  After this change the mouse was working but the touchpad wasn't.  Finally, I changed the xorg.conf settings as follows:
    Section "ServerLayout"
    InputDevice "Touchpad" "CorePointer"
    InputDevice "USBMouse" "SendCoreEvents"
    with the InputDevice sections remaining the same for USB Mouse and Touchpad.  This didn't change anything from the last setting: the mouse was working but the touchpad wasn't.
    How can I restore the ability to simultaneously use mouse and touchpad?
    Last edited by RobF (2007-11-09 20:20:54)

    Try this:
    Move "SendCoreEvents" to the Touchpad line (replacing the "AlwaysCore" bit) and then comment out the USB mouse.  So in the end, it'll look like this:
    Section "ServerLayout"
    InputDevice "Touchpad" "SendCoreEvents"
    # InputDevice "USBMouse"
    EndSection
    Restart X and see if everything is working right.
    PS: You may also want to consider changing the Touchpad device line to "/dev/input/mouse2" instead of "/dev/psaux" as I believe psaux has been deprecated in kernel 2.6.  I could be wrong, but I can tell you that /dev/input/mouse2 works great with the touchpad on my Dell e1505.

  • Can't use mouse scroll within forms

    Hello,
    I have been working with SCSM 2012 since the public beta was released and I don't know why I haven't noticed this until my analysts said something but the mouse scroll wheel doesn't work within any of the forms. 
    It will scroll if you put the cursor directly over the vertical scroll bar but if the mouse is within the form its self it doesn't work.
    This is one of the most basic functionalities, is there any way to get that to work? 
    What is it about how the form is designed that doesn't allow the scrolling?
    I would be surprised if this is the first post anyone has made about this so if it's a duplicate I apologize.
    Thanks,
    Dustin

    Hi Dustin,
    I can confirm this bug, though if remember correctly, it only applies to some forms, not all. It's been reported on connect already, but please go vote on it:
    https://connect.microsoft.com/SC/feedback/details/753389/scrolling-with-mouse-wheel-in-throughout-the-system-is-inconsistent#tabs
    Regards
    //Anders
    Anders Asp | Lumagate | www.lumagate.com | Sweden | My blog: www.scsm.se

  • Mac Freezes when using mouse scroll wheel (logitech)

    Hi there,
    I have a logitech MX1000 mouse + the same iMac Alu's at home at work.
    In any Finder window if I scroll with the wheel down the file/folder list + open/save dialogs the whole system freezes, sometimes it recovers on its own after a few seconds othertimes (this depends seems to depend on how much I've scrolled) if I change spaces it recovers and catches up with its self.
    It happens on both my machines almost every Finder window I scroll in, scrolling works fine in PathFinder, but I still have to use Finder for open and save file dialogs.
    Is there a solution?
    Or is it Logitech's fault?
    Cheers
    --Rob

    Hello rob:
    If that is the only thing that causes a freeze, I would suspect the mouse.
    Barry

  • Downloaded version 20 and cannot use mouse or keyboard

    After downloading the latest versi0on of firefox on my desktop, my mouse and keyboard will not work

    Hello,
    are you able to disable graphics hardware acceleration
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Cannot use formula in LabVIEW 8.5 library error

    Hi,
    I'm not able to open the Formula function.  It says the library is not accessible.  I just installed LabVIEW on this machine.  Any ideas?
    Thanks,
    Vara

    Vara,
    I'm with smercurio, and think that a reinstall is probably your only option.  You could try to delete the files that are causing the issue and then try another repair, or you could do the reinstall and know you're going to fix it.
    And Jeff is correct that in older versions of LabVIEW it was a little ambigeous what needed to be installed but starting in 8.6 we added the "Installed with:" field to the help, and it 2009 we changed the name to "Requires:".  This makes it easier to know what the VIs installed with.
    The picture below shows the 8.5 help next to the 2009 help:
    Justin Parker
    National Instruments
    Product Support Engineer

  • I cannot use the scrolling feature on my touchpad with Firefox

    Computer is Gateway NV52 Series with a multi-gesture touch pad running Windows 7 64 bit. Trying to use Mozilla Firefox 26

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Mouse Scroll is not working in safari

    Hi
    After instlling Safari on my Win 7, could not use mouse scroll to navigate through the pages (scroll up and down).
    Went through few posts and found the solution by installing "Microsoft Intellipoint latest software ver."
    Downloaded directly from Microsoft Download Center & now IT WORKS.
    Got the idea from PhDj's post https://discussions.apple.com/thread/2390501?start=0&tstart=0, wanted to write in the same post but it's archived, thanks PhDj's.
    Have fun.
    Masood Faruki

    thanks
    i got the solution. 
    Enable the "Video chat enhancements" lab in Gmail or select 'enable high resolution video' in your Chat settings in iGoogle or Google+. The Video Chat Enhancements is under "Labs" in your Gmail Settings. It works fine.

Maybe you are looking for