Welcome, Register for free! or Login below:
EduGeek.net RSS Feeds Register FAQ Members Social Groups User Map Calendar Search Today's Posts Mark Forums Read

*nix

*nix forum sponsored by
*nix Forum Sponsored by Navaho

Powering the backend of many of our networks, unbeknown to many. Linux, Solaris, Unix...

Go Back   EduGeek.net Forums > Technical > *nix
Reply
 
LinkBack Thread Tools Search Thread
Sponsored Links
Old 12-05-2009, 07:55 AM   #1
 
RabbieBurns's Avatar
 
Join Date: Apr 2008
Location: Sydney
Posts: 2,679
australia uk scotland
Thanks: 373
Thanked 229 Times in 127 Posts
Blog Entries: 5
Rep Power: 63 RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future
Default disable auto clipboard mouse click feature

im using the mousepad on my laptop, and there must be some part of it that acts as a middle click or something, because whenever im typing or using the mouse, it keeps pasting in whatever i last had in the clipboard, or whatever I might happen to have the mouse pointing over. Its really annoying. Im gonna go and buy a USB mouse at some point but till then would be great to know how to disable it.
  Reply With Quote
Old 12-05-2009, 08:40 AM   #2
 
powdarrmonkey's Avatar
 
Join Date: Feb 2008
Location: Alcester, Warwickshire
Posts: 3,819
uk uk england
Thanks: 251
Thanked 546 Times in 470 Posts
Rep Power: 115 powdarrmonkey ooh
powdarrmonkey ooh powdarrmonkey ooh
Default

Quote:
Originally Posted by RabbieBurns View Post
im using the mousepad on my laptop, and there must be some part of it that acts as a middle click or something, because whenever im typing or using the mouse, it keeps pasting in whatever i last had in the clipboard, or whatever I might happen to have the mouse pointing over. Its really annoying. Im gonna go and buy a USB mouse at some point but till then would be great to know how to disable it.
Probably both buttons together simulates a third-button click, which pastes from the X clipboard. This might help: Sebastian’s blog HowTo: Disable “middle button” click when pressing left and right mouse button in X.Org 7.4
  Reply With Quote
Thanks to powdarrmonkey from:
RabbieBurns (12-05-2009)
Old 12-05-2009, 09:21 AM   #3
 
RabbieBurns's Avatar
 
Join Date: Apr 2008
Location: Sydney
Posts: 2,679
australia uk scotland
Thanks: 373
Thanked 229 Times in 127 Posts
Blog Entries: 5
Rep Power: 63 RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future
Default

Thanks Ill check that out. Its happening not by pressing either left or right click, but something to do with the trackpad. Maybe theres a click emulation somewhere on the trackpad, certainly i can scroll down through pages by dragging the very right of the trackpad etc.

Quote:
root@rubuntu:~# lshal | grep mouse
info.capabilities = {'input', 'input.mouse'} (string list)
info.product = 'Macintosh mouse button emulation' (string)
input.product = 'Macintosh mouse button emulation' (string)
info.product = 'IBM Enhanced (101/102-key, PS/2 mouse support)' (string)
pnp.description = 'IBM Enhanced (101/102-key, PS/2 mouse support)' (string)
info.linux.driver = 'psmouse' (string)
info.callouts.add = {'hal-probe-vmmouse'} (string list)
info.capabilities = {'input', 'input.mouse', 'input.touchpad'} (string list)
info.callouts.add = {'hal-probe-vmmouse'} (string list)
info.capabilities = {'input', 'input.mouse'} (string list)
info.capabilities = {'input', 'input.mouse'} (string list)
Im not quite sure which is what I want ?
  Reply With Quote
Old 12-05-2009, 09:51 AM   #4
 
powdarrmonkey's Avatar
 
Join Date: Feb 2008
Location: Alcester, Warwickshire
Posts: 3,819
uk uk england
Thanks: 251
Thanked 546 Times in 470 Posts
Rep Power: 115 powdarrmonkey ooh
powdarrmonkey ooh powdarrmonkey ooh
Default

The info.product entry. Turn:

Code:
<device>
  <match key=”info.capabilities” contains=”input.mouse”>
    <match key=”info.product” string=”<your mouse’s info.product>”>
      <merge key=”input.x11_options.Emulate3Buttons” type=”string”>false</merge>
    </match>
  </match>
</device>
into:

Code:
<device>
  <match key=”info.capabilities” contains=”input.mouse”>
    <match key=”info.product” string=”Macintosh mouse button emulation”>
      <merge key=”input.x11_options.Emulate3Buttons” type=”string”>false</merge>
    </match>
  </match>
</device>
  Reply With Quote
Thanks to powdarrmonkey from:
RabbieBurns (12-05-2009)
Old 12-05-2009, 10:29 AM   #5
 
RabbieBurns's Avatar
 
Join Date: Apr 2008
Location: Sydney
Posts: 2,679
australia uk scotland
Thanks: 373
Thanked 229 Times in 127 Posts
Blog Entries: 5
Rep Power: 63 RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future
Default

thanks, added that.. will see if it works after i reboot in a while, cheers!
  Reply With Quote
Old 31-05-2009, 08:52 AM   #6
 
RabbieBurns's Avatar
 
Join Date: Apr 2008
Location: Sydney
Posts: 2,679
australia uk scotland
Thanks: 373
Thanked 229 Times in 127 Posts
Blog Entries: 5
Rep Power: 63 RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future
Default

Quote:
Originally Posted by RabbieBurns View Post
thanks, added that.. will see if it works after i reboot in a while, cheers!
been meaning to reply to myself for a while.. This is still not fixed ..
  Reply With Quote
Old 02-07-2009, 11:01 AM   #7
 
RabbieBurns's Avatar
 
Join Date: Apr 2008
Location: Sydney
Posts: 2,679
australia uk scotland
Thanks: 373
Thanked 229 Times in 127 Posts
Blog Entries: 5
Rep Power: 63 RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future RabbieBurns has a brilliant future
Default

Ive managed to remove this problem, by disabling the "tap mousepad for click" feature, which gets rid of my problem, but also removes the functionality a bit. But at least im not pasting random text in the middle of sentences any more which is good.
  Reply With Quote
Reply

EduGeek.net Forums > Technical > *nix

Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting someone elses clipboard?!? sidewinder Windows 6 13-06-2008 12:25 PM
disable right-click>set as desktop background beeswax Windows 18 15-02-2008 11:55 AM
Disable right click context on 'Start Menu' 'All Programs @ bigb3n Windows 10 07-11-2007 01:32 PM
Clipboard Clearer mattx Scripts 0 05-11-2007 02:06 PM
Disable right click from Destktop in Windows 2000 Pro crus8er Windows 3 21-06-2007 08:26 AM



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search Thread
Search Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 06:24 AM.
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Copyright EduGeek.net




website uptime

© 2005 - 2010 EduGeek.net
SERVER: 4
no new posts