Re: mouse wheel problem

2005-09-03 Thread Wayne Sierke
On Thu, 2005-09-01 at 09:38 -0700, Dave McCammon wrote:
> 
> --- Alejandro Pulver <[EMAIL PROTECTED]> wrote:
> > Hello,
> > 
> > It works for me without the "ZAxisMapping" option
> > (and the same
> > options in rc.conf):
> > 
> > Identifier  "Mouse1"
> > Driver  "mouse"
> > Option  "Protocol"  "Auto"
> > Option  "Device""/dev/sysmouse"
> > Option  "Buttons"   "5"
> > 
> > Best Regards,
> > Ale
> 
> I had a heck of a time getting my wheel to work in
> RELENG_6. Eventually, starting moused with setting in
> rc.conf(below) and turning off Emulate3Buttons (had to
> put line in with the "false". commenting out didn't
> work) and adding the "Buttons" line worked. The
> instructions out of the handbook didn't work this
> time.
> 
I found the same with my Logitech MX500 - I had to add "Emulate3Buttons"
"false" whereas as best as I can remember it seemed that everything I
was reading at the time was telling me I only needed to set it to true
if I wanted to enable that option. Curious.

At the time this configuration was done I was probably running 5.3 and X
might still have been XFree86. The same config is working now with 5.4
and Xorg.

> xorg.conf sections--
> Section "InputDevice"
> 
> # Identifier and driver
> 
> Identifier  "Mouse1"
>  Driver "mouse"
>  Option "Protocol""auto"
>  Option "Device"  "/dev/sysmouse"
> 
> Option "Emulate3Buttons" "false"
>Option "Buttons" "5"
> 
> EndSection
> 
Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "auto"
Option  "Device" "/dev/sysmouse"
Option  "ZAxisMapping" "8 9"
# Had to put this in because default is true!?!?
Option  "Emulate3Buttons" "False"
Option  "Buttons" "9"
EndSection

> rc.conf---
> moused_enable="YES"
> moused_type="auto"
> moused_flags="-z 4"
> 
moused_enable="YES"
moused_flags="-a 2.0 -z 8"
moused_type="auto"

The ["ZAxisMapping" "8" "9"], ["Buttons" "9"] and [moused_flags="-z 8"]
entries allow me to use both the scroll-wheel *and* the two buttons
adjacent to the scroll-wheel to scroll - I quite like being able to just
hold down either of those two buttons to scroll through long documents,
as it's much less finger-strain than lots of wheeling, and often more
convenient than mousing the cursor into the scroll bars which tend to be
quite narrow on my high-res display.

> excerpt from dmesg--
> psm0:  irq 12 on atkbdc0
> psm0: [GIANT-LOCKED]
> psm0: model IntelliMouse, device ID 3
> 
> (It is a Logitech optic mouse.Two button with Wheel)
> 
ums0: Logitech USB-PS/2 Optical Mouse, rev 2.00/18.00, addr 2, iclass 3/1
ums0: 7 buttons and Z dir.

I don't understand why it describes it as 7 buttons. There are the
'left' and 'right' buttons, two thumb buttons, two adjacent to the
mouse-wheel, plus another button on top behind the wheel, so that's 7
buttons. But then there's the wheel button itself which is the "third"
or "middle" button, so surely there are 8 buttons on this mouse, plus
the "Z dir" of the wheel. Curious.


Wayne


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-09-01 Thread Ed Stover
On Thu, September 1, 2005 10:38 am, Dave McCammon wrote:
>
>
> --- Alejandro Pulver <[EMAIL PROTECTED]> wrote:
>
>> On Tue, 30 Aug 2005 11:57:18 -0500
>> "Efren Bravo" <[EMAIL PROTECTED]> wrote:
>>
>> > Hi,
>> >
>> > I've written on /etc/rc.conf :
>> >
>> > moused_port="/dev/psm0"
>> > moused_flags="-r high -z 4"
>> > moused_type="auto"
>> > moused_enable="YES"
>> >
>> > and on /etc/X11/xorg.conf
>> >
>> > Section "InputDevice"
>> > Identifier  "Mouse0"
>> > Driver  "mouse"
>> > Option  "Protocol" "auto"
>> > Option  "Device" "/dev/sysmouse"
>> > Option  "Buttons" "5"
>> > Option  "ZAxisMapping" "4 5"
>> > EndSection
>> >
>> > But the scrollwheel doesn't work. I've tried with
>> Kde's
>> > Applications.
>> > Have I a bad configuration?
>> >
>> > Thanks...
>> >
>>
>> Hello,
>>
>> It works for me without the "ZAxisMapping" option
>> (and the same
>> options in rc.conf):
>>
>> Identifier   "Mouse1"
>> Driver   "mouse"
>> Option   "Protocol"  "Auto"
>> Option   "Device""/dev/sysmouse"
>> Option   "Buttons"   "5"
>>
>> Best Regards,
>> Ale
>
> I had a heck of a time getting my wheel to work in
> RELENG_6. Eventually, starting moused with setting in
> rc.conf(below) and turning off Emulate3Buttons (had to
> put line in with the "false". commenting out didn't
> work) and adding the "Buttons" line worked. The
> instructions out of the handbook didn't work this
> time.
>
> xorg.conf sections--
> Section "InputDevice"
>
> # Identifier and driver
>
> Identifier  "Mouse1"
>  Driver "mouse"
>  Option "Protocol""auto"
>  Option "Device"  "/dev/sysmouse"
>
> Option "Emulate3Buttons" "false"
>Option "Buttons" "5"
>
> EndSection
>
> rc.conf---
> moused_enable="YES"
> moused_type="auto"
> moused_flags="-z 4"
>
> excerpt from dmesg--
> psm0:  irq 12 on atkbdc0
> psm0: [GIANT-LOCKED]
> psm0: model IntelliMouse, device ID 3
>
> (It is a Logitech optic mouse.Two button with Wheel)
>
>

Yeah , this one time at band camp, I had a brand new mouse with a wheel
and for the life of me i couldent get the stupid thing to work. I treid
everything from new drivers, x configs, etc, etc turned out, my mouse
was honestly brokewasted about four hours on that stupid thing... grr.
Who needs mice anyways...

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-09-01 Thread Dave McCammon


--- Alejandro Pulver <[EMAIL PROTECTED]> wrote:

> On Tue, 30 Aug 2005 11:57:18 -0500
> "Efren Bravo" <[EMAIL PROTECTED]> wrote:
> 
> > Hi,  
> >   
> > I've written on /etc/rc.conf :  
> >   
> > moused_port="/dev/psm0"  
> > moused_flags="-r high -z 4"  
> > moused_type="auto"  
> > moused_enable="YES"  
> >   
> > and on /etc/X11/xorg.conf  
> >   
> > Section "InputDevice"  
> > Identifier  "Mouse0"  
> > Driver  "mouse"  
> > Option  "Protocol" "auto"  
> > Option  "Device" "/dev/sysmouse"  
> > Option  "Buttons" "5"  
> > Option  "ZAxisMapping" "4 5"  
> > EndSection  
> >   
> > But the scrollwheel doesn't work. I've tried with
> Kde's
> > Applications. 
> > Have I a bad configuration?  
> >   
> > Thanks...  
> > 
> 
> Hello,
> 
> It works for me without the "ZAxisMapping" option
> (and the same
> options in rc.conf):
> 
> Identifier"Mouse1"
> Driver"mouse"
> Option"Protocol"  "Auto"
> Option"Device""/dev/sysmouse"
> Option"Buttons"   "5"
> 
> Best Regards,
> Ale

I had a heck of a time getting my wheel to work in
RELENG_6. Eventually, starting moused with setting in
rc.conf(below) and turning off Emulate3Buttons (had to
put line in with the "false". commenting out didn't
work) and adding the "Buttons" line worked. The
instructions out of the handbook didn't work this
time.

xorg.conf sections--
Section "InputDevice"

# Identifier and driver

Identifier  "Mouse1"
 Driver "mouse"
 Option "Protocol""auto"
 Option "Device"  "/dev/sysmouse"

Option "Emulate3Buttons" "false"
   Option "Buttons" "5"

EndSection

rc.conf---
moused_enable="YES"
moused_type="auto"
moused_flags="-z 4"

excerpt from dmesg--
psm0:  irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model IntelliMouse, device ID 3

(It is a Logitech optic mouse.Two button with Wheel)



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-09-01 Thread Efren Bravo
Hi, 
 
I solved the mousewheel problem. I had to comment out all related with 
moused on /etc/rc.conf to use the /dev/psm0 device 
on /etc/X11/xorg.conf:   
   
Section "InputDevice" 
Identifier  "Mouse0" 
Driver  "mouse" 
Option  "Protocol" "auto" 
Option  "Device" "/dev/psm0" 
Option  "Buttons" "5" 
Option  "ZAxisMapping" "4 5" 
EndSection 
 
Thanks for your time.. 
  
 
 
-Original Message- 
From: Jared Barneck <[EMAIL PROTECTED]> 
To: Efren Bravo <[EMAIL PROTECTED]> 
Cc: freebsd-questions@freebsd.org 
Date: Wed, 31 Aug 2005 19:47:04 -0600 
Subject: Re: mouse wheel problem 
 
> Alejandro Pulver wrote: 
>  
> >On Tue, 30 Aug 2005 11:57:18 -0500 
> >"Efren Bravo" <[EMAIL PROTECTED]> wrote: 
> > 
> >   
> > 
> >>Hi,   
> >>   
> >>I've written on /etc/rc.conf :   
> >>   
> >>moused_port="/dev/psm0"   
> >>moused_flags="-r high -z 4"   
> >>moused_type="auto"   
> >>moused_enable="YES"   
> >>   
> >> 
> >> 
> I joined late so I don't know if this is a USB mouse or not.  If it is 
> a  
> USB mouse, the you shouldn't enable moused in rc.conf because it will 
> be  
> launched by usb.conf. (ignore this if not a usb mouse) 
>  
> Also, many people change settings in one xorg.conf only to find out 
> they  
> are using a different conf file in another directory.  Check that.   
> Maybe your settings are not taking because of that? 
>  
> >>and on /etc/X11/xorg.conf   
> >>   
> >>Section "InputDevice"   
> >>Identifier  "Mouse0"   
> >>Driver  "mouse"   
> >>Option  "Protocol" "auto"   
> >>Option  "Device" "/dev/sysmouse"   
> >>Option  "Buttons" "5"   
> >>Option  "ZAxisMapping" "4 5"   
> >>EndSection   
> >>   
> >>But the scrollwheel doesn't work. I've tried with Kde's 
> >>Applications.  
> >>Have I a bad configuration?   
> >>   
> >>Thanks...   
> >> 
> >> 
> >> 
> > 
> >Hello, 
> > 
> >It works for me without the "ZAxisMapping" option (and the same 
> >options in rc.conf): 
> > 
> >Identifier   "Mouse1" 
> >Driver   "mouse" 
> >Option   "Protocol"  "Auto" 
> >Option   "Device""/dev/sysmouse" 
> >Option   "Buttons"   "5" 
> > 
> >Best Regards, 
> >Ale 
> >___ 
> >freebsd-questions@freebsd.org mailing list 
> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions 
> >To unsubscribe, send any mail to 
> "[EMAIL PROTECTED]" 
> > 
> >   
> > 
>  
 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-08-31 Thread Alejandro Pulver
On Tue, 30 Aug 2005 11:57:18 -0500
"Efren Bravo" <[EMAIL PROTECTED]> wrote:

> Hi,  
>   
> I've written on /etc/rc.conf :  
>   
> moused_port="/dev/psm0"  
> moused_flags="-r high -z 4"  
> moused_type="auto"  
> moused_enable="YES"  
>   
> and on /etc/X11/xorg.conf  
>   
> Section "InputDevice"  
> Identifier  "Mouse0"  
> Driver  "mouse"  
> Option  "Protocol" "auto"  
> Option  "Device" "/dev/sysmouse"  
> Option  "Buttons" "5"  
> Option  "ZAxisMapping" "4 5"  
> EndSection  
>   
> But the scrollwheel doesn't work. I've tried with Kde's
> Applications. 
> Have I a bad configuration?  
>   
> Thanks...  
> 

Hello,

It works for me without the "ZAxisMapping" option (and the same
options in rc.conf):

Identifier  "Mouse1"
Driver  "mouse"
Option  "Protocol"  "Auto"
Option  "Device""/dev/sysmouse"
Option  "Buttons"   "5"

Best Regards,
Ale
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-08-30 Thread David Kirchner
On 8/30/05, Efren Bravo <[EMAIL PROTECTED]> wrote:
> Section "InputDevice"
> Identifier  "Mouse0"
> Driver  "mouse"
> Option  "Protocol" "auto"
> Option  "Device" "/dev/sysmouse"
> Option  "Buttons" "5"
> Option  "ZAxisMapping" "4 5"
> EndSection
> 
> But the scrollwheel doesn't work. I've tried with Kde's Applications.

I've never used moused, and I have the mousewheel working in all apps
(although I don't run KDE). The primary difference between my setup
and yours is that I have Option "Buttons" "7" rather than 5, and am
using a USB mouse. I suspect the former is more relevant than the
latter.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: mouse wheel problem

2005-08-30 Thread Gary W. Swearingen
"Efren Bravo" <[EMAIL PROTECTED]> writes:

> Have I a bad configuration?  

You might need these in your /etc/rc.conf (and a re-boot):

moused_enable="YES"
moused_flags="-z 4 5"
##moused_flags="-m 1=3 -m 3=1 -z 4 5"  ## I'll try un-swapped buttons for a 
while.
moused_port="/dev/psm0"
moused_type="auto"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


mouse wheel problem

2005-08-30 Thread Robert Huff

Efren Bravo writes:

>  Section "InputDevice"  
>  Identifier  "Mouse0"  
>  Driver  "mouse"  
>  Option  "Protocol" "auto"  
>  Option  "Device" "/dev/sysmouse"  
>  Option  "Buttons" "5"  
>  Option  "ZAxisMapping" "4 5"  
>  EndSection  
>
>  But the scrollwheel doesn't work. I've tried with Kde's Applications.  
>
>  Have I a bad configuration?  

Section "InputDevice"
 Identifier  "Mouse0"
 Driver  "mouse"
 Option  "Device" "/dev/sysmouse"
 Option  "Protocol" "auto"
 Option  "Buttons" "7"
 Option  "ZAxisMapping" "4 5"
 Option  "Emulate3Buttons"
 Option  "ChordMiddle"
EndSection

works for me under plain X.  (I don't use KDE.)


Robert Huff

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


mouse wheel problem

2005-08-30 Thread Efren Bravo
Hi,  
  
I've written on /etc/rc.conf :  
  
moused_port="/dev/psm0"  
moused_flags="-r high -z 4"  
moused_type="auto"  
moused_enable="YES"  
  
and on /etc/X11/xorg.conf  
  
Section "InputDevice"  
Identifier  "Mouse0"  
Driver  "mouse"  
Option  "Protocol" "auto"  
Option  "Device" "/dev/sysmouse"  
Option  "Buttons" "5"  
Option  "ZAxisMapping" "4 5"  
EndSection  
  
But the scrollwheel doesn't work. I've tried with Kde's Applications.  
  
Have I a bad configuration?  
  
Thanks...  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"