Wheel scrolling speed [SOLVED]

Is there any way to change mouse wheel scrolling speed in firefox? It scrolls every 3 lines by default, i would like to change to like 5-6 lines which would make wheel scrolling much faster. Is it possible?
I'm using XFCE 4.2.1
EDIT: Ok, I solved it. To anyone interested here is the tip:
Enter about:config in the firefox address bar.
In the filter, enter: mousewheel.withnokey
Change mousewheel.withnokey.sysnumlines to false
Change mousewheel.withnokey.numlines to a higher number, say 5
reload firefox
done.

TheOne wrote:
sherlock wrote:Found a solution for Microsoft Mouse.
After loading Windows one will need to unplug / plug again mouse receiver. And everything is fine and in normal speed.
That fixed it, that is all nice and good.
Anyone know how to fix this in a "better way", dont want to have to keep unpluggin the mouse everytime I boot.
It also works to me!
I am using 3.11.6-1-ARCH with awesome v3.5.2 on slim 1.3.6, and i have both windows7 and Linux on my laptop.
My mice is Microsoft Corp. Nano Transceiver v1.0 for Bluetooth
Also I find every time i restart my linux, the mice is too fast until i cover off my laptop then open it, or just plug the receiver again...

Similar Messages

  • Chromium wheel mouse speed [SOLVED]

    How can one adjust the wheel mouse for scrolling?  For example, scroll 6 lines at a time.  I found several solutions that require third party software but that is unacceptable
    Last edited by graysky (2011-12-03 11:52:59)

    bratmaxe wrote:
    Maybe a bit late but there is a launch parameter for that
    Start chromium like that
    chromium --scroll-pixels=120
    The "120" can be modified of course.
    thanks for the tip. i've been looking for something like this for a while now.

  • Mouse wheel scroll speed is too slow

    I have the problem in this(https://support.mozilla.org/en-US/questions/948356) thread and this(https://support.mozilla.org/en-US/questions/948356#answer-422916) answer was closest, but the change reverts after restarting Firefox, even though the settings stay applied. I can switch it back to the old setting, then switch it back to the answer, and that fixes it, but it still reverts after restarting Firefox.
    Still getting it in Firefox v24.0.

    No reply given here provides a valid solution!
    The key parameter here is '''mousewheel.min_line_scroll_amount'''
    One should set it to some high value. I've set it to 100 (I use smooth scrolling OFF).
    Source:
    http://askubuntu.com/questions/27270/increasing-scroll-speed

  • Mouse Scroll speed problems with JVM

    I could not find Java (Apple’s JVM ) forums, so I might be posting this in the wrong forum. With that disclaimer, here is my issue:
    I am running into a problem where the mouse-wheel scrolling speed configurations are not being properly passed to Java applications. I have set my scrolling speed to the maximum, all works well with regula apps, yet when I use my mouse-wheel to scroll and window in a Java application, scrolling it is unbearably slow, the wheel becomes useless.
    Also, horizontal scrolling does not work in any java application either.
    I believe these are a problem with Apple's JVM implementation. Are there any workarounds?
    Has anyone else experience this?
    JVM v1.5

    Does this happen with all Java apps or just a handful? I ask because I found that OpenOffice scrolls so slowly that it's unusable. However, I think this is an issue with OO, not with Java. Other Java apps scroll fine for me.

  • Mobile mouse 4000 horizontal wheel scroll doesn't work with Publisher 2007 or 2010

    I installed a new Mobile Mouse 4000 on my W7 64 bit Dell laptop.  Installed Microsoft Mouse and Keyboard Center,  Drivers are up to date. The horizontal scrolling via lateral press on the wheel does not work properly with
    Publisher 2010 or 2007.  The scroll bar moves, but not the graphic. It works properly with Word and Excel.  Is this mouse not compatible with Publisher?  I have uninstalled and reinstalled the mouse and the mouse software.

    That's correct. Also, same problem with the same mouse on another laptop running W8.1. I tried your suggestion and Ctrl + Left and Right Arrow moves the graphic OK. I have since tried the mouse with Adobe Photoshop Elements 12 and found that the lateral
    press on the wheel has no effect at all. The mouse software (Microsoft Mouse and Keyboard Center) has a selection box for applications that do not respond properly to wheel scrolling; I selected Publisher and Photoshop from the list but this had no effect
    either. The horizontal scroll works properly with MS Picture Manager, Power Point and Access in addition to Excel and Word. Publisher is the only Office app that has a problem. The Office suite on the W8 laptop is a new install with all current updates. I
    ran MS Office Diagnostis which said it repaired some issues, but didn't solve the Publisher scroll problem.

  • Since I updated to 6, my mouse wheel scrolling has become erratic, and, depending of the text size on the web page, either moves only a few lines each turn or moves several pages instead of one page as it did before on every tab. how do I fix this?

    Is this a glitch or is it something to do with compatibilty?

    yes, it is still happening, though I've gotten better at ignoring it.
    my touchpad, i think, is an elan ps/2 port smartpad and my mouse is a microsoft basic optical mouse v2, both componants are working correctly and have the latest driver update installed.
    The difference between img 1 and 2 is one scroll wheel turn down. In image 3 I have decreased the view using control - (minus) and in image 4 I have scrolled down one turn of the wheel. you can see that instead of a full page turn, like between img1 and 2, it only moves about 2/3's of the screen down. As every tab seems to have a different text size, the amount of scroll turn changes between tabs, sometimes varying as much as several pages each scroll turn.
    One thing I have noticed, is that the vertical scrolling speed on my mouse settings changes the amount the pages moves when turning the wheel. This only seems to change when in firefox. changing this while using word has no effect on the page movement in word. Increasing the vertical scrolling speed will make the scroll turn move further.
    I have adjusted the scroll settings in options, and no adjustment of settings, (autoscrolling on/off, smooth scrolling on/off in and combinations of off/on) has made this error stop occurring. I have checked for malware etc, no issues. This happened from the instant I upgraded to FF6, so I think there is a corrolation there.

  • Increase Mousewheel Scroll Speed of my jScrollPane?

    Hi,
    Im having some trouble increasing the mousewheel speed in my application... im using Ubuntu as operating system. Currently im doing the following:
    jScrollPane.getVerticalScrollBar().setUnitIncrement(90000);I tried with 16, 30, 100, 300, and 90000 and the speed is not increasing. I also read on Ubuntu forums that mousewheel scroll speed seems to be a problem but in all other applications on my computer the speed is ok...
    anyone knows how to solve this?
    thanks

    You need to override getScrollableUnitIncrement to return a larger value. SSCCE: the table on the right will scroll 5 times more than the table on the right.import java.awt.Rectangle;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JSplitPane;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    public class TwoScrollSpeeds {
       public static void main(String[] args) {
          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
                new TwoScrollSpeeds().makeUI();
       public void makeUI() {
          JTable tableLeft = new JTable(100, 5);
          JScrollPane scrollLeft = new JScrollPane(tableLeft);
          JTable tableRight = new JTable(100, 5) {
             @Override
             public int getScrollableUnitIncrement(Rectangle visibleRect,
                   int orientation, int direction) {
                return super.getScrollableUnitIncrement(visibleRect, orientation,
                      direction) * 5;
          JScrollPane scrollRight = new JScrollPane(tableRight);
          JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
                scrollLeft, scrollRight);
          JFrame frame = new JFrame();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setSize(700, 500);
          frame.add(splitPane);
          frame.setLocationRelativeTo(null);
          frame.setVisible(true);
          splitPane.setDividerLocation(0.5);
    }db
    edit In future (not this time), Swing related questions should be posted in the [Swing forum|http://forums.sun.com/forum.jspa?forumID=57]
    Edited by: Darryl.Burke

  • After upgrading to 20.0.1, my mouse scrolling speed is slow

    I've just updated to 20.0.1 from 19.0.2 and suddenly, the speed of my mouse scrolling has decreased dramatically. When I tried other browsers, it was usual/normal speed but for firefox, it was very slow (i.e around 5+ lines decreased).
    I have looked at one of the recent post about this problem (https://support.mozilla.org/en-US/questions/948356?esab=a&s=mouse+wheel+scroll&r=0&as=s) however, even setting mousewheel.enable_pixel_scrolling to "false", it didn't revert back to normal/usual speed.
    FYI, this is without smooth scrolling. I don't use this feature due to personal preference.
    Help would be appreciate it.

    I had a similar problem where it seemed like smooth scrolling was always "ON". Whenever I moved my mouse scrollwheel for 1 notch, the page only scrolled for a few pixels. So it looked like smooth scrolling was enabled somewhere even though it was set to "OFF" in Firefox options.
    It turned out that it was a Logitech extension that was causing the problem, more precisely Logitech SetPoint software which was smoothing the scrolling and overriding Firefox's settings.
    So if you have a Logitech mouse and Logitech SetPoint software installed, go into Firefox menu Tools -> Add-ons, then click on "Extensions" on the left and then find Logitech SetPoint entry and DISABLE it. I did that and scrolling was then back to normal, as configured within Firefox settings.

  • Mouse scrolling speed is too fast

    It appears that iPhoto doesn't honor the mouse scrolling speed in system prefs. Scrolling with the mouse is useless for me because the slightest up or down movement scrolls several pictures at a time. I have a Logitech MX Revolution... I don't know if the mighty mouse behaves any differently. Is anyone else annoyed by this?

    Nevermind... I discovered the Logitech prefs allow me to fine tune the scroll wheel.

  • Issue with Adobe Muse parallax jitters with mouse wheel scrolling vertically.

    Hi all,
    I'm learning Adobe Muse for the first time to put together a wedding website (http://mattandsangeeta.businesscatalyst.com/index.html), so bear with me as I'm a novice at the software - though I do have the most up version, Adobe Muse CC 2014.
    So far, it's been an excellent platform, and for the most part the site functions incredibly well. However, one key flaw I've noticed in it is the parallax scrolling speed when using a mouse.
    The parallax portion of the site jitters badly, and while we've found a few improvements for the issue (the best was making sure there was nothing that had scrolling set to "0"), I'm still at a loss for how to get smooth scrolling transition speeds. Every forum Adobe has seems to be showcasing the features, and not troubleshooting this particular issue. A lot of posts are similar, but none seem to be resolved. I've noticed that other parallax pages are smoother with the mouse wheel scrolling down, so I'm hoping it's just an issue with Muse that has a setting or snippet of code that can remedy the issue.
    What makes me realize it's the mouse wheel scrolling, and not the site itself, is because whenever I access the site on my surface pro tablet, the parallax runs buttery smooth with touch control or even trackpad control. Same when you click the middle scroll button and pan down. Without any mouse wheel scrolling, it looks great! But with a mouse wheel, it hiccups constantly and ruins the effect.
    So, is there any way to smooth out the steps that the mouse wheel scrolling seems to be causing?
    Thanks in advance,
    Matt

    Thanks for the link, however that specific thread was one of the ones I referenced in my original post.
    In the beginning of the thread, it's clear that coding can fix the issue, though it's not recommended. More telling is that the response you referenced indicates that the issue is claimed to have been either fixed or mitigated In updated releases of Muse.
    As you pointed out earlier, however, Firefox displays the parallax a little better than Chrome, and much better than Internet Explorer. I'm assuming that Adobe Muse Creative Cloud 2014 release attempted to this issue.
    So my question kind of remains: am I missing a setting that would make the scrolling more smooth, or is it simply just a limitation of the browser / software / parallax combination?
    Thanks again for the responses.

  • [4.0final] Scroll speed in table grid configurable?

    Hello out there,
    is there a way to configure the scroll speed (using mouse wheel) in the table data grid?
    It seems that the data grid scrolls pixel wise whereas the result grid of the worksheet scrolls row wise. So can I configure the table data grid (i.e. the grid that is opened when I click on a table in the tree and then on the data tab) to respond to the mouse wheel the same way the result grid of the worksheet does?
    Or is that simply a bug?
    I'm using 4.0.0.13.80 on Windows 7 64bit with the suplied JDK.
    Oracle version is 11.2.0.2.
    Regards,
    dhalek

    SQL Developer 4 bugs

  • In Logic X, the mouse click wheel scroll is way too fast on the arrange window and the piano roll.  Is there a way to adjust this?

    In Logic X, the mouse click wheel scroll is way too fast on the arrange window and the piano roll.  Is there a way to adjust this?  This is the way I scrolled for MIDI editing on Logic 9

    Hi cris2121, assuming you're using a mouse from apple, go to >System Preferences<
    it's here where one can configure a mouse device.
    Additionally you can also configure Scrubbing in Logic: "When in scrub mode, you can slowly move the playhead in the Tracks Window and the Audio (and optional MIDI) will be played back. The playback speed depends on how fast you move the Playhead in either direction."
    Have a nice day!

  • Adobe Reader ignores mouse scroll speed setting

    Whenever I load a .PDF file, the mouse scroll wheel setting is ignored and the document scrols 1 line at a time. This is very annoying when trying to read a document, especially is it is a long one.
    Is there a way to set the scroll speed in the Reader so that it matches the Windows scroll speed setting?

    tasty_minerals wrote:
    Can anybody tell me how to set a mouse scroll speed in "chromium" for example? I found an application called "imwheel", and edited ~/.imwheelrc adding
    "^chromium$”
    None, Up, Button4, 5
    None, Down, Button5, 5
    but still get an error:
    INFO: imwheel started (pid=897)
    expected 3 args, got 1, in config.
    “^chromium$”
    How to make it properly, anyone?
    fixed it, just needed to remove "$" sign in “^chromium$” > “^chromium”.
    One thing is if imwheel working, you cant increase fonts in chromium with "ctrl + wheel" unfortunately.

  • Annoying X11 scroll wheel scrolling...

    When I try to scroll in an X11 application (xterm, nedit, etc.), the scroll wheel does not behave properly. If I scroll slowly, the scrollbars never move, but once I increase the speed of the scroll wheel, it starts working. This is incredibly frustrating when I'm trying to scroll slowly through a large text file, one line at a time because the only way the scroll wheel works is if I skip 5-10 lines at a time.
    I thought this had been fixed around 10.4.3 (since I had run into it as soon as I upgraded to Tiger), but I upgraded from a Powerbook G4 to a MacBook Pro and am seeing it again. I wonder if this fix didn't make it to the intel/Universal version of X11.

    ARG!  This is embarassing, Apple!
    I have my scroll speed turned way up and it takes 36 - get this, 36! - uses of the scroll wheel to get through one single page of artists!
    On the other hand, the thumb control on the right is so sensitive that the slightest drag on it goes up by a page and a half.
    You really wonder if they ever use their own products?

  • Lenovo Update of Synaptics UltraNav driver now makes it reset vertical scrolling speed

    After the last update of the Synaptics UltraNav Driver on my W510 to 16.1.1.0 through Lenovo Update it now keeps reseting the Vertical Scrolling speed (the lines per mouse wheel to 1) randomly when pluging/unplugging a mouse or docking/undocking or rebooting the machine.
    This is probably the 5th case of a Lenovo Update that regresses something on the system I've had for the past year and a half...

    ttttrigg3r wrote:
    I can confirm this problem.  It is very annoying to have to reset mouse scroll speed 5-10 times a day because I use my dock very often.  I have found no fix, whether temporary or permanent, to this problem.  I am using driver version 16.1xxxx (the latest "upgrade") and am very annoyed by this problem.  I hope Lenovo techs can help us.
    Have You tried removing the driver and installing an older version? The one that You know worked?
    T60/T618895-W4M, UXGA, T9300, 8GB RAM, Vertex3, Intel 6300 Win8.1
    R61e 7649-W1Z, T7250, Intel 6300

Maybe you are looking for

  • Cannot see photos after upgrading to iPhoto 9.1.3

    I upgraded my iPhoto to 9.1.3 and now I cannot see some of my photos.  iPhoto indicates the photos are there, but all I see is blank dotted frames where thumbnails should be. When I click on one of the photos I get a gray out frame with an exclamatio

  • Fastest way to transfer information from my old MacBook Pro to a new one?

    What is fastest way to transfer data between MacBook pros? It takes forever on wi-if.

  • Macbook pro late 2011 has built-in intel graphic card, am I safe?

    Just noticed that I don't have any discrete GPU installed or whatever. Just the Intel HD Graphics 30000 built-in. I am safe of the GPU failures?

  • Correlation in BPM

    hi   i am working in BPM process... i created correlation and i try to assign the correlation in the Receiver step in Activate correlation field but the correlation is not assigning..but it is displayed in the list box... wat is the reason.... thx...

  • Anyone seen error 4010 in the itunes store?

    After I copy a CD to my itunes and it attempts the match with the store, I get an error 4010 saying there was some sort of error at the store and my task could not be completed.  I am not sure what was not completed since the cd is copied and then it