Jump to content

USB mouse MS Intellimouse 1.1a optical


keropi
 Share

Recommended Posts

I have this MS mouse, but the back/forward buttons do not work and when I press them they have the same effect as pressing the wheel-button... any chance of getting this to work like it does in windows? it is a very handy feature...

ThanX! :D

Edited by keropi
Link to comment
Share on other sites

Have a look in your /etc/X11/xorg.conf and look for the section on mouse. There is information as to how the mouse is configured and we may need to make some changes in here.

 

Perhaps post this section, or the complete xorg.conf so we can help what we need to change to enable it.

Link to comment
Share on other sites

here it is my firends, the whole file... don't see any option for the extra keys, u tell me :D :thumbs:

 

# File generated by XFdrake.

# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************

Section "Files"
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.
FontPath "unix/:-1"
EndSection

Section "ServerFlags"
#DontZap # disable <Crtl><Alt><BS> (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse does not work
#DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection

Section "Module"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "/usr/X11R6/lib/modules/extensions/nvidia/libglx.so"
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "us,el(extended)"
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll,compose:rwin"
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "6 7"
EndSection

Section "Monitor"
Identifier "monitor1"
VendorName "Sony"
ModelName "Sony CPD-200ES"
HorizSync 30.0-70.0
VertRefresh 50.0-120.0

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576"	 50.00  768  832  846 1000   576  590  595  630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576"	 63.07  768  800  960 1024   576  578  590  616

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_120"  176.01  1152 1240 1368 1584  864 865 868 926  -HSync +Vsync

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_100"  143.47  1152 1232 1360 1568  864 865 868 915  -HSync +Vsync

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_85"  119.65  1152 1224 1352 1552  864 865 868 907  -HSync +Vsync

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_75"  104.99  1152 1224 1352 1552  864 865 868 902  -HSync +Vsync

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_60"  81.62  1152 1216 1336 1520  864 865 868 895  -HSync +Vsync

# modeline generated by gtf(1) [handled by XFdrake]
ModeLine "1152x864_50"  66.85  1152 1208 1328 1504  864 865 868 889  -HSync +Vsync
EndSection

Section "Device"
Identifier "device1"
VendorName "nVidia"
BoardName "NVIDIA GeForce FX (generic)"
Driver "nvidia"
Option "DPMS"
Option "IgnoreEDID" "1"
EndSection

Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24

Subsection "Display"
	Depth 8
	Virtual 1152 864
EndSubsection

Subsection "Display"
	Depth 15
	Virtual 1152 864
EndSubsection

Subsection "Display"
	Depth 16
	Virtual 1152 864
EndSubsection

Subsection "Display"
	Depth 24
	Virtual 1152 864
EndSubsection
EndSection

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen "screen1"
EndSection

Link to comment
Share on other sites

There are two steps in what you want to achieve:

1- Get all buttons to be recognized.

2- Assign actions (back/forward) to two of those buttons.

 

1- See here if that helps (unless all buttons are already OK):

http://yves.gablin.club.fr/gablin.php?page...le=config_mouse

 

2- There's probably a better way, but I suppose you could map the buttons to Alt+Left and Alt+Right when in your browser using ImWheel.

 

Yves.

Link to comment
Share on other sites

The key line is this:

 

Option "ZAxisMapping" "6 7"

 

try changing "6 7" to "4 5" and reboot and see if that helps.

 

wow, that messed things :D

mwheel up -> forward

mwheel down ->backward

left+right extra buttons (the ones I want to make forward/backward) both had the same effect as left-click...

Link to comment
Share on other sites

try adding this line:

Option "ButtonMapping" "1 2 3 4 5"

to your mouse device section, so it reads like this:

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
Option "ButtonMapping" "1 2 3 4 5"
Option "ZAxisMapping" "6 7"
EndSection

make sure to keep ZAxisMapping "6 7" and not "4 5"

Link to comment
Share on other sites

My mistake :P

well, not so much a mistake. different mice have the buttons numbered differently (depending on the signal they send). it gets really messy when you're trying to find the right config.

Link to comment
Share on other sites

well, not so much a mistake. different mice have the buttons numbered differently (depending on the signal they send). it gets really messy when you're trying to find the right config.
Exactly. That's what my page is all about.

 

Yves.

Link to comment
Share on other sites

try adding this line:

Option "ButtonMapping" "1 2 3 4 5"

to your mouse device section, so it reads like this:

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
Option "ButtonMapping" "1 2 3 4 5"
Option "ZAxisMapping" "6 7"
EndSection

make sure to keep ZAxisMapping "6 7" and not "4 5"

 

YES, now it works as expected, MEGA-THANX!!!! :D :D :D :D :lol2:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...