hi!
i've been using the following setup on my nc10 for weeks and it works perfectly most of the time. Scrolling with 2 fingers is smooth. you can even scroll with your thumb only while typing. i don't use two or three finger click. maybe this helps someone.
to edit your synaptics configuration you have to edit /etc/hal/fdi/policy/11-x11-synaptics.fdi:
Code:
sudo gedit /etc/hal/fdi/policy/11-x11-synaptics.fdi
this is my config:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<match key="info.product" contains="Synaptics TouchPad">
<merge key="input.x11_driver" type="string">synaptics</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">1</merge>
<merge key="input.x11_options.HorizEdgeScroll" type="string">1</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">2</merge> <!--two finger tap - right click(2) -->
<merge key="input.x11_options.TapButton3" type="string">3</merge> <!--three finger tap - middle click(3). almost impossible to click -->
<merge key="input.x11_options.VertScrollDelta" type="string">300</merge> <!-- vert scroll speed. higher=slower-->
<merge key="input.x11_options.HorizScrollDelta" type="string">300</merge> <!-- horiz scroll speed. higher=slower-->
<merge key="input.x11_options.SHMConfig" type="string">On</merge>
<merge key="input.x11_options.EmulateTwoFingerMinZ" type="string">10</merge>
<merge key="input.x11_options.EmulateTwoFingerMinW" type="string">5</merge>
<merge key="input.x11_options.VertTwoFingerScroll" type="string">1</merge>
<merge key="input.x11_options.HorizTwoFingerScroll" type="string">1</merge>
<merge key="input.x11_options.PalmDetect" type="string">1</merge>
</match>
<match key="info.product" contains="AlpsPS/2 ALPS">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
<match key="info.product" contains="appletouch">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
<match key="info.product" contains="bcm5974">
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
</match>
</device>
</deviceinfo>
to make scrolling almost as smooth as with win xp, i use the
SmoothScroll Extension for the Chromium Browser. There are similar extensions for Firefox and opera has a smooth scrolling option too.