Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

logitech wheel mouse

0 views
Skip to first unread message

Francisco Canedo

unread,
Dec 2, 2000, 3:00:00 AM12/2/00
to
Hi,

I have a Logitech PS/2 wheelmouse, I can't seem to use the wheel in X.

I run Slackware 7.1, kernel 2.2.16 and xfree86 3.3.6.

The wheelbutton is supposed to be supported as buttons 4 and 5. In xmms
they can be used to control the volume and in a Gnome terminal you can
use it to scroll.

I have tried

------------
buttons 5
ZAxisMapping 4 5
------------

with and without the 'ZAxis...' line, in the 'Pointer' section of
XF86Config. 'xev' shows no events for either case when I turn the wheel.

Can anyone help.

TIA,

Francisco


Jorgen Grahn

unread,
Dec 2, 2000, 3:00:00 AM12/2/00
to
On Sat, 02 Dec 2000 13:39:28 +0100, Francisco Canedo <can...@ano.ano> wrote:
>Hi,
>
>I have a Logitech PS/2 wheelmouse, I can't seem to use the wheel in X.
...

>------------
>buttons 5
>ZAxisMapping 4 5
>------------

You missed one part. Diff of my XF86Config before/after I bought the small
kind of USB-slash-PS/2 Logitech wheel mouse:

213c214
< Protocol "PS/2"
---
> Protocol "IMPS/2"
214a216,217
> Buttons 5
> ZAxisMapping 4 5

For this and all other X/scrollmouse info, see

http://www.inria.fr/koala/colas/mouse-wheel-scroll/

/Jorgen

--
// Jorgen Grahn <jgrahn@ ''Battle ye not with monsters,
\X/ algonet.se> lest ye become a monster''

Mick

unread,
Dec 2, 2000, 12:53:47 PM12/2/00
to
Francisco Canedo wrote:

> Hi,
>
> I have a Logitech PS/2 wheelmouse, I can't seem to use the wheel in X.
>
>

Howdy. Try using "imwheel". In the highly unlikely event that there is no
Slackware tarball of it, then grab it from www.freshmeat.net. Pay
particular attention to the part in the documentation where it refers to
the XF86Config file. It recommends:

--------------------
Buttons 3
ZAxisMapping 4 5
--------------------

Have fun

Mick

> I run Slackware 7.1, kernel 2.2.16 and xfree86 3.3.6.
>
> The wheelbutton is supposed to be supported as buttons 4 and 5. In xmms
> they can be used to control the volume and in a Gnome terminal you can
> use it to scroll.
>
> I have tried
>

> ------------
> buttons 5
> ZAxisMapping 4 5
> ------------
>

Dan Jacobson

unread,
Dec 13, 2000, 11:36:55 PM12/13/00
to
Hi, it's me, the jackoff who for the last three weeks told everybody to 'choose
intellimouse' in the Mandrake 7.2 installation, because that's what worked on
the 'test your mouse' part, instead of the distracting 'Logitech' choices given.
Well of course it doesn't actually work once one gets into daily use. So, what
does an 'Logitech TrackMan Marble+' user actually do to get the scroll wheel
actually working? Say even for netscape & emacs & emacs -nw...? Sure, you're
gonna mention the usual links, but let's not be like me and not actually have
day to day proof of a working solution before posting...
--
www.geocities.com/jidanni E-mail: restore ".com." ???
Tel:+886-4-5854780; starting in year 2001: +886-4-25854780


Mark A. Flacy

unread,
Dec 14, 2000, 7:12:14 PM12/14/00
to
In your XF86Config file..

Section "Pointer"
Protocol "IMPS/2"
Device "/dev/psaux"


Buttons 5
ZAxisMapping 4 5

EndSection


You need the new Mozilla for the wheel mouse to work.

For Emacs...

;; Intellimouse support
(global-set-key [(mouse-4)] 'scroll-down)
(global-set-key [(mouse-5)] 'scroll-up)

=)

unread,
Dec 15, 2000, 1:11:42 AM12/15/00
to
Dan Jacobson wrote:

thanks for the help. but sending the bug report to mandrake does not fix my
problem I am having now. What should I do to resove this problem???
What is caml anyway?

Dan Jacobson

unread,
Dec 17, 2000, 10:38:32 AM12/17/00
to
"Mark A. Flacy" <fl...@nortelnetworks.com> ?????
news:yw0r1yva...@nortelnetworks.com...

> In your XF86Config file..
>
> Section "Pointer"
> Protocol "IMPS/2"
> Device "/dev/psaux"
erm, I think for the TrackMan Marble+ it probably has to be:
Protocol "IntelliMouse"
Device "/dev/ttyS1"

> Buttons 5
> ZAxisMapping 4 5
> EndSection
>
> You need the new Mozilla for the wheel mouse to work.
uh, it now works part-time in Netscape, pretty good in these
days of high unemployment. :-(

> For Emacs...
>
> ;; Intellimouse support
> (global-set-key [(mouse-4)] 'scroll-down)
> (global-set-key [(mouse-5)] 'scroll-up)

That created a painful situation the details of which I forgot,
so I pasted together this slob job[?]

(setq jidanni-scroll-distance 4)
(defun jidanni-scroll-up ()
(interactive)
(scroll-up jidanni-scroll-distance))
(defun jidanni-scroll-down ()
(interactive)
(scroll-down jidanni-scroll-distance))
(global-set-key [(mouse-4)] 'jidanni-scroll-up)
(global-set-key [(mouse-5)] 'jidanni-scroll-down)

OK, muchos gracias to you Mr. Mark Flacy, you got my 'TrackMan Marble+' rolling
[though it just will never be as smooth as in win98: do a quick jerk backwards
during a forwards roll, tisk.] Say, where's the win98 Logitech feature of
'smart mouse' or whatever, where it automatically puts the pointer over the
'yes' or default button of choices?

Dan Jacobson

unread,
Dec 18, 2000, 3:29:05 PM12/18/00
to
"Dan Jacobson" <jid...@kimo.FiXcomTHiS.tw> 撰寫於郵件 news:...

> "Mark A. Flacy" <fl...@nortelnetworks.com> ?????
> news:yw0r1yva...@nortelnetworks.com...
> > In your XF86Config file..
> >
> > Section "Pointer"
> > Protocol "IMPS/2"
> > Device "/dev/psaux"
> erm, I think for the TrackMan Marble+ it probably has to be:
> Protocol "IntelliMouse"
> Device "/dev/ttyS1"
> > Buttons 5
> > ZAxisMapping 4 5
> > EndSection
> >
> > You need the new Mozilla for the wheel mouse to work.
> uh, it now works part-time in Netscape, pretty good in these
> days of high unemployment. :-(

In Netscape 4.75 I discovered that when the above solution stops working,
go to the panel of icons and iconify netscape. Then click again on the same
icon
to bring it back. The wheel then works again...

0 new messages