Smooth scrolling with macbook touchpad

I've noted recently that, when using both the synaptics and mtrack touchpad drivers, two-finger scrolling moves in small increments, as with a mouse wheel, rather than in one continuous motion like in Mac OS X (where page movement follows finger movement more closely). Is it possible to use the latter behavior rather than emulate a physical mouse wheel?

I have a Macbook 11,1, the new 13" Retina. I'm currently running the mtrack driver, but synaptics experiences the same issue. My 10-mtrack.conf is as follows:
Section "InputClass"
MatchIsTouchpad "on"
Identifier "Touchpads"
Driver "mtrack"
Option "Sensitivity" "0.6"
Option "ButtonIntegrated" "true"
Option "ButtonMoveEmulate" "true"
Option "Sensitivity" "0.7"
Option "ClickFinger1" "1"
Option "ClickFinger2" "2"
Option "ClickFinger3" "3"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
#Option "TapButton1" "0"
#Option "TapButton2" "0"
#Option "TapButton3" "0"
Option "ThumbSize" "35"
Option "PalmSize" "55"
Option "DisableOnPalm" "true"
Option "IgnorePalm" "true"
Option "ClickTime" "25"
Option "ScrollDistance" "60"
Option "ScrollUpButton" "5"O
Option "ScrollDownButton" "4"
Option "ScrollLeftButton" "7"
Option "ScrollRightButton" "6"
EndSection
I'll try the edge scroll and see what happens.
EDIT: A fresh synaptics config sort of gives me smooth scrolling. Aha, I can still see the increments if I scroll slowly, but they're much less noticeable. I could work with that. However, synaptics does not (as far as I know) have the capability to ignore my thumb resting on the bottom of the trackpad, causing unwanted clicks. Can I get that functionality in synaptics?
Last edited by DrKillPatient (2013-11-18 22:24:37)

Similar Messages

  • How can I get back the two button smooth scroll with Logitec optical marble mouse since Adobe Acrobat or FireFox updates on 10/26/2010 made it quit?

    Oct 25, 26 or 27 both Adobe Acrobat and Mozilla Firefox alerted me they had updates to install. Since I trust them both I installed them. However, since then my optical marble mouse from Logitech acted strangely different. The cursor did not move as usual. It didn't respond right. I thought it might have needed the dust wiped out, so I did that. It still acted sluggish when I tried to move it, it was as though it was "spinning its wheels" not going anywhere. I went to the Control Panel clicked on Mouse, and proceeded to look at the settings and set them to default. I then tried to use the universal scroll by clicking the two big buttons which showed a circle with cross hair arrows as usual. When the marble was moved forward or backward, the scroll had always been smooth allowing one to read the screen evenly and without holding any button down. Now it was jerky. Is this a problem from the last update? My version of Firefox is 3.6.12
    Thank you

    I am happy to see another person is having this jerky scroll situation with the latest update to Firefox on October 27. I did check my I.E browser and '''THAT BROWSER''' still does the nice smooth scroll....let's get 'er fixed Mozilla! I know you can!

  • Screen smooth scrolling with mouse wheel

    I have a screen with a number of vertical sections that are initially all collapsed. After expending these sections the screen becomes too tall and I get a scroll bar on the right. Scrolling it by dragging a scroll bar has expected smooth scrolling but using the mouse wheel scrolls  why too large portion of the screen.
    Any idea what to look for?
    Thanks

    No, I do not have other parts installed. I saw this behavior by others last week in the Safari forum here at Apple too. They wrote about this could be happend by using fast user switching and only Safari 4 was effected. But now, as I saw this after upgrading to Safari 4.0.2 in Aperture too, there should be a biger bug elsewere in the System or maybe Webkit?

  • How to make SMOOTH scrolling with Jtable in Swing automatically ?

    Hi All,
    I'm coding for a price board program, with all records I designed a table for them. So now I want to scroll automatically for all records on that table for customers viewing them. The problem that I can make it scroll smoothly ! Currently I use this block code :
    Thread scollTable;
    int scrollCount = 38;
    public void scrollTable(final int records) {
    if (scollTable == null) {
    scollTable = new Thread() {
    @Override
    public void run() {
    try {
    while (true) {
    if (scrollCount == 38) {
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    Thread.sleep(4000);
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    Thread.sleep(1000);
    scrollCount++;
    if (scrollCount == records) {
    scrollCount = 0;
    Thread.sleep(4000);
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    scrollCount = 38;
    continue;
    } catch(Exception ex) {
    if (!scollTable.isAlive()) {
    //scollTable.setPriority(7);
    scollTable.start();
    public void scrollRowToVisible(int row, JTable table) {
    Rectangle cellRect = table.getCellRect(row, 0, true);
    Rectangle visibleRect = table.getVisibleRect();
    cellRect.x = visibleRect.x;
    cellRect.width = visibleRect.width;
    table.scrollRectToVisible(cellRect);
    The problem I think the progam can not run smoothly with scroll :
    scrollRowToVisible(scrollCount, jTable1);
    Thread.sleep(1000);
    scrollCount++;
    Any helps,
    Thanks.
    Edited by: onlysang2004 on Aug 4, 2009 2:22 AM

    Could you please tell me more detail ? I studied about Swing recently ! I found a link for that javax.swing.Timer : http://forums.sun.com/thread.jspa?threadID=5366085&messageID=10603235#10603235 but how can I use ? In my price board screem doesn't have ActionListener object or button to listen to submit. Can I create an ActionListener object ? Please help me more, how to run smooth scrolling automatically !
    public class ViewElectricHaSTC extends JFrame {
    Thread scollTable;
    public ViewElectricHaSTC(Options options) throws Exception {
    scrollTable(options.getRecord());
    int scrollCount = 38;
    public void scrollTable(final int records) {
    if (scollTable == null) {
    scollTable = new Thread() {
    @Override
    public void run() {
    try {
    while (true) {
    if (scrollCount == 38) {
    //jTable1 created with initComponents method
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    Thread.sleep(4000);
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    Thread.sleep(1000);
    scrollCount++;
    if (scrollCount == records) {
    scrollCount = 0;
    Thread.sleep(4000);
    jTable1.setRowSelectionInterval(scrollCount, scrollCount);
    scrollRowToVisible(scrollCount, jTable1);
    scrollCount = 38;
    continue;
    } catch(Exception ex) {
    if (!scollTable.isAlive()) {
    //scollTable.setPriority(7);
    scollTable.start();
    public void scrollRowToVisible(int row, JTable table) {
    Rectangle cellRect = table.getCellRect(row, 0, true);
    Rectangle visibleRect = table.getVisibleRect();
    cellRect.x = visibleRect.x;
    cellRect.width = visibleRect.width;
    table.scrollRectToVisible(cellRect);
    Edited by: onlysang2004 on Aug 4, 2009 7:23 PM

  • Smoother Scrolling with Firefox?

    I like to use the arrow keys to scroll, but scrolling is not smooth and fluid in Firefox as it is with Safari, with the cursor stopping at each line on a page. I have tried checking and unchecking the scrolling options within Firefox preferences to no avail. Any ideas?

    I can't recall the name at the moment, but there is an add-in on the FireFox add-in site that is supposed to improve scrolling.

  • With upgrading to version 8.0.1, I can no longer scroll with my touchpad or button (Lenovo T61). These was possible prior to the upgrade. How do I fix this?

    The touchpad and "little red button" still work on other programs but just not Firefox.

    Try to modify the pref ui.trackpoint_hack.enabled on the about:config page from the default value -1 to 0 or 1 to see if that makes the scroll pad work.<br />
    Close and restart Firefox after changing the pref.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)

  • Whenever a pdf is open in a tab, scrolling with my touchpad stops working on all other tabs.

    When I'm viewing a pdf file from the firefox browser, the scrolling feature of my touch pad stops working for other tabs.
    I am running Firefox 7.0.1 on Windows 7 Home Premium on a Toshiba Satellite L640.
    The touch pad is a Synaptics PS/2 port TouchPad.

    Same prob here. Also, a little scroll bar pops up next to the mouse when attempting to scroll within Firefox. Comp info: Firefox 7.0.1, Adobe Reader X 10.1.1, Samsung RV511 + Windows 7 Home Premium SP1, Synaptics PS/2 Version 15.0.22.0.

  • Websites which has smooth scrolling with 3.6.15 are now jerky. IE8 is ok on these sites. (ex: ebay)

    Acts as if my machine is too slow or does not have enough memory but all was fine in Firefox 3.6.15 and still is in IE8. Very annoying trait.

    See:
    * http://kb.mozillazine.org/Website_colors_are_wrong
    * http://kb.mozillazine.org/Websites_look_wrong
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Why can't i my scroll with my multi-gesture touchpad in firefox4?

    Hi, i have a gateway nv79c48u laptop with intelcore i3-370m processor and also a multi-gesture touchpad etc.. It worked fine with fx3, but since i installed fx4 i can't scroll with the touchpad in a in the firefox browser anymore. in other browsers like internet explorer and chrome it still works fine though.. I wonder if it's a add-on that is causing the problem or if fx4 doesn't support this feature.. i hope it's not the second one though, thanx!

    You can't access iCloud.com from a mobile browser. You can from a desktop or laptop computer whose browser identifies it as such.
    If you use a browser on your iPad or iPhone which allows changing the browser ID sent to websites, e.g., "Safari" rather than "Mobile Safari" you will be able to access iCloud.com. One such browser is iCab which is available in the App Store

  • Fix for scrollbar in Firefox 4.0 not working with Synaptics touchpad

    Since updating to Firefox 4.0 I'm having trouble scrolling with the touchpad on my Dell laptop. I followed all the instructions here: http://support.mozilla.com/en-US/kb/Cannot%20scroll%20with%20mouse%20wheel%20or%20touchpad - updated the driver, then changing the settings in Firefox.
    After changing both the .numlines and .sysnumlines settings and restarting Firefox, the scrollbar works once or twice, then stops. If I change the settings and restart Firefox, I can get it to work again, but really - that gets old fast. Is there something that would be a more permanent fix?

    Its due to the adobe reader add on. I removed adobe reader and installed foxit reader. Now everything seems perfect. My laptop model is model is Acer Aspire 5820 TG and I use synaptics driver.
    Solution: (Courtesy - iuliand)
    If you have issues with touch-pad scrolling in FF4 do this:
    1) disable Adobe Acrobat add-on and test if it works, otherwise
    2) install the latest touch-pad driver.
    Hope this will help others.
    Edit:
    If the above does not work, temporarily disable all add-ons in order to check if there is another one that may cause this.
    Also, make sure you update to the latest touch-pad driver from the touch-pad manufacturer site (very easy to do if you have a Synaptics). Most of the time drivers from notebook manufacturer support site are NOT up to date.
    Keep in mind that you may need to do both things (disable acrobat AND install latest driver). Both are possible causes and may occur at the same time, as it was in my case.
    Edit 2:
    If you have an ALPS touch-pad and none of the above works, check dog425's post below in this topic. He pointed out a solution found in this thread: https://support.mozilla.com/en-US/questions/791829#answer-163071

  • Touchpad (Synaptics) scrolling with two finger gesture is smooth only after scrolling in IE9 before (Firefox 8/9/10 Windows 7 (64)).

    First I got the problem solved that 2-finger-gesture scrolling did not work at all: https://support.mozilla.org/en-US/questions/895816. Thanks for that!
    With "smooth scrolling" turned on in the options, touchpad gesture scrolling is smooth in FF9 but only in 5-line-steps. No stopping in between possible. If touchpad scrolling is performed in IE9 once, scrolling in FF9 is completely smooth afterwards. If the gesture is perfomed once in Google Chrome 16 scrolling in FF9 is turned back to 5-step-scrolling. Chrome 16 and IE9 can be used to turn off and on the completely smooth scrolling in FF9!

    Upgrade your browser to Firefox 9 and check
    * getfirefox.com

  • My touchpad will not scroll with the current version of foxfire.

    The screen in foxfire will not scroll with the sliding of my finger on right side of the touchpad on my lenovo thinkpad or the navigation button. It does work with all other programs including windows explorer and google chrome.

    OK, this is the original poster again. The trackpad scrolling problem has been sporadic. Now I have realized that I have this problem (in Firefox 7.0 and 7.01) WHEN THERE IS A PDF DOCUMENT OPEN IN ONE OF THE TABS. When there is a .pdf open, trackpad scrolling works fine in *that* tab but not in any of the other Firefox tabs that are open. When I close or move away from the .pdf file, then the scrolling function returns in the other tabs. Is there something about the Acrobat plug-in (ver. 9.4.5) that isn't working correctly in Firefox 7.x?

  • Need help with smooth scrolling of a sprite

    Hi All,
    Something that i have had many problems over the years with
    is creating the same nice smooth scrolling effect that i see on
    many sites (my scrolling always appears jerky in AS2 even when done
    on a movieClip with a high framerate - with onEnterFrame updates).
    At the moment i am building my first AS3 site, and want to
    use it as an opportunity to "do things right".
    So far i have a very simple setup that is scrolling a sprite
    that contains a series of loaded images based on the position of a
    scrollbar. As one would expect from something this simple - it is
    rather jerky.
    I tried a number of variations of using a Tween to do the
    scroll, and kill/update that tween when the mouse moves again.
    However in all cases the results were not good (multiple tweens
    seemed to still be active - so killing the tween wasn't working).
    So clearly i am doing something wrong.
    I have searched extensively, but have not come across any
    examples that seem appropriate (some predefined components - but
    that does not help me understand the fundamentals) . I have seen
    some examples that register a timer, and manually calculate the
    offset for each frame, is this the correct approach?
    Below is my existing simple (jerky) implementation.
    All help to understand how to make this scrolling smooth
    would be hugely appreciated.
    One more thing to add incase it is relevant, is that the
    contents of the Sprite are a series of jpg images loaded with the
    Loader class (although i plan on switching to using the BulkLoader
    class created by a developer in the AS3 community).

    nope. the approach for the smoothest tween would be to:
    1. initialize your parameters
    2. create your timer.
    3. add your timer's listener method when needed (when your
    slider is clicked).
    4. in your timer's listener function repeatedly poll the
    slider's position and update your sprite using the parameters
    determined in 1.
    5. remove your listener when the slider is released.

  • Have transferred from old computer to macbook air and have lost ability to scroll with mouse has gone to scroll bar. Can I fix this

    Have transferred data from my old computer to new MacBook Air. New computer now uses scroll bar like older version. Can I return the MacBook Air to scrolling with mouse pad.

    Open Mouse or Trackpad preferences in System Preferences and be sure the scroll setting is correct.

  • Blurry letters on websites when scrolling in Firefox 19 (with either smooth scrolling enabled or disabled)

    Hello,
    Just recently I updated to Firefox 19, and since I had some problems when scrolling on websites: some of the lines/letters get blurred.
    I did some online research and found a tip of deactivating smooth scrolling, so I did that, re-started Firefox, but the issue was still not solved.
    I did not have this problem until the recent upgrade.
    Is this a known issue? Is there a solution to this?
    If not, how can I go back to the previous version of Firefox, I can only find download links to the latest version....
    Thanks,
    Lars

    Hi Lars, you said : ''EDIT: could it be that in the previous version of Firefox the hardware acceleration was disabled by default and in the latest version it's enabled by default? ''
    hardware acceleration is enable always in the versions, probably something with Bug 825205 - WebGL index validation fails when a large attribute buffer is bound, that fixed in new version see: https://www.mozilla.org/en-US/firefox/19.0/releasenotes/
    ''Does this somehow mean I have an outdated graphics card? ''
    you can check it, but if working without problem with hardware acceleration was disabled, for me, leave it as it is. !
    thank again

Maybe you are looking for

  • 11i upgrade - Step: Apply latest product patches (required)

    Hi, I am in the process of upgrading 11.5.9 (DB 9.2.0.4) to 12.1.1 (DB 10.2.0.5). As part of the upgrade steps in document titled *"Oracle® E-Business Suite Upgrade Guide Release 11i to 12.1.1 Part No. / E16342-04 / August 2010"*, I was directed to a

  • Dynamic sender SOAP Adapter

    Hi, i need to define a web service that could be consumed by any sender system, how could i do this if i need to define the BS in the URL when i create the WSLD undel menu tool-->Define web service http://host:port/XISOAPAdapter/MessageServlet?channe

  • Outlook connector - sending mail to alias'es doesn't work ...

    Hi, We are using JES5 with the latest outlook connector (7.2.402.1) The user accounts have mailalternateaddress entries that consist of their initials. ([email protected]) the uid is the same as their initials (ie uid=hda) the main 'mail' attribute i

  • PDF image sequence only shows first frame

    Does anyone else have a problem with this? I am trying to make a simple looping two-frame vector animation. Without converting to video or pixels (I need this to stay flexible), what are my options? I've tried making the layers turn on and off with a

  • Release vs Debug: Bad Memory Access

    Hello everyone. For a school assignment I have to write a program that sorts bottles (inputed by the user) into three bins, and state the minimum amount of moves it takes. I've completed the program, that's not really the problem. There is a drop dow